Hi Guys,
I am trying to add a class when a checkbox is "checked" in Safari and remove it when it is unchecked [in other browsers I am using.bind("focus", function() { but in Safari it doesnt work?]
I am currently using
jQuery('.top_class input').bind("focus", function(){
jQuery(this).parents('.row').addClass("add_over");
})
.bind("blur", function() {
jQuery(this).parents('.row').removeClass("add_over");
});
This doesnt work in Safari - how to get the code to work in safari ?