Jquery Toggle Not Working In Firefox
The following jquery script is not working in firefox. Anyone with a idea on how to correct it? $(document).ready(function () { $('#all_lists').hide(); $('#add_lists').click(
Solution 1:
You need to pass event
as an argument in the click function like:
$('#add_lists').click( function(event){
^ ^
Post a Comment for "Jquery Toggle Not Working In Firefox"