Merge branch 'maint/7.0'
[ninja.git] / application / views / user / js / user.js
blob58fcfe8bf6c9648abbdab6c2910df0e05a898693
1 $(document).ready(function() {
2         $('.menubox').click(function() {
3                 var the_id = $(this).attr('id');
4                 the_id = the_id.replace('checkbox_', '');
5                 if ($(this).attr('checked')) {
6                         $('#' + the_id).css('color', '#c0c0c0');
7                 } else {
8                         $('#' + the_id).css('color', '#000000');
9                 }
10         });
12         $('#usergroup').change(function() {
13                 if ($(this).val() == '') return;
14                 $("#editmenu_form").trigger('submit');
15         });
16 });