why is this Jquery function not working -
in above link when use "click" working , when use "bind" not working .what might problem .how can make work bind too
jquery bind takes function pointer second parameter. should use
$("#imgsavecomment").bind("click",checkparams);
because in example call function checkparams , use return value bind on click event.
Comments
Post a Comment