I do the search input in focus, it shows a div with parameters with the following:
$("#search").focus(function(){ $("#options").fadeIn("fast"); });
I hide the div back with this function
$("#search").blur(function(){ $("#options").fadeOut("fast"); });
the problem occurs even when the user clicks on any checkbox in #option that is hiding. How can I stop it when you click the checkboxes?
javascript jquery
danny
source share