Hi, I know "selectors" is the wrong term, but I can't remember it :P
I have this script:
$(function() {
//checkbox
$("#checkbox2, .akslabel").click(function(){
$("#scrollwrap").toggleClass('highlight');
});
});
Is it ok to stack up the selectors like that? Or should I re-write it for each one?
Thanks!