Index: betterselect.js =================================================================== --- betterselect.js (revision 111) +++ betterselect.js (working copy) @@ -1,7 +1,7 @@ // $Id: betterselect.js,v 1.2.2.1 2009/02/27 11:22:00 marktheunissen Exp $ Drupal.behaviors.initBetterSelect = function(context) { - $('.better-select .form-checkboxes input[@type="checkbox"]').click(function(){ + $('.better-select .form-checkboxes input[type="checkbox"]').click(function(){ this.checked ? $(this).parent().parent().addClass('hilight') : $(this).parent().parent().removeClass('hilight'); }).filter(":checked").parent().parent().addClass('hilight'); }