Reputation: 10575
In the Above link When i use with "click" it is working and when i use it with "bind" it is not working .What might be the problem .How can i make it work with bind too
Upvotes: 1
Views: 52
Reputation: 2286
You're missing an element with id "imgSaveComment" and you don't need to use () in the function part of .bind
.bind("click",checkParams);
Upvotes: 1
Reputation: 44215
jQuery bind takes a function pointer as the second parameter. You should use
$("#imgSaveComment").bind("click",checkParams);
because in your example you call the function checkParams and use the return value to bind to the on click event.
Upvotes: 2