SOLVED: Binding Click To A Image Button Not Working
I have a image button defined as:
-
<input type="image" id="signin" name="signin" value="Sign In" src="images/login_submit.png" />
I then have the following javascript:
-
$("#signin").bind("click", function() { alert("test"); });
But, when I click the image button, I don't see the javascript alert. What am I doing wrong here? Thanks.