Parent Directory
|
Revision Log
|
Revision Graph
A better user interface for SELECT form elements with multiple = TRUE Currently requires patch #85166 in order to work properly.
| 1 | $(document).ready(function() { |
| 2 | $('.betterselect .form-checkboxes input[@type="checkbox"]').click(function(){ |
| 3 | this.checked ? $(this).parent().parent().addClass('hilight') : $(this).parent().parent().removeClass('hilight'); |
| 4 | }); |
| 5 | }); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |