blob: a53814c15f44ef4ddcfb54b70e44686c1d781101 (
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_hide() {
$('#avatar_options > div').hide();
var selected = $('#avatar_driver').val();
$('#avatar_option_' + selected).show();
}
avatar_hide();
$('#avatar_driver').bind('change', avatar_hide);
})(jQuery); // Avoid conflicts with other libraries
|