I have an html page which contains a button like this.
<input id="qsbButton" class="btn" type="submit" tabindex="10" value="Search" name="qsbButton" onclick="searchSubmitted();return true;"/>
$(':image,:reset,:button,:submit').unbind("click")
.bind('click',function(e){
alert("clicked!");
});
$('input:not(:submit),textarea').change(function(e){
alert("typed something!");
});
I expected to received "clicked!" alert but nothing...no error messages.