i have a problem with ie, like always.
check this demo with IE9 or 8: DEMO
go inside the input and hit the enter, i dont know why the alert will apear.
bug ?
// the button
$("#client").live("click", function(){
alert('test');
});
// the input text
$("#pesq_model").live("keypress", function(e){
// testing with nothing
});
IE treats
buttontags in a special way. You could use an input instead of a button:Demo.