blob: 2068bdbbc47817faeecb19528945eef6d0f3cddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(function($) { // Avoid conflicts with other libraries
"use strict";
function avatar_simplify() {
$('#av_options > div').hide();
var selected = $('#avatar_driver').val();
$('#av_option_' + selected).show();
}
avatar_simplify();
$('#avatar_driver').bind('change', avatar_simplify);
})(jQuery); // Avoid conflicts with other libraries
|