Hi,
I am using Jquery ui accordion , in that i have a text box as a accordion header , now when i am trying to type a space in text box accordion change and changestart event fire so how would i prevent this thing while typing space in a input box
Hi,
I am using Jquery ui accordion , in that i have a text box as a accordion header , now when i am trying to type a space in text box accordion change and changestart event fire so how would i prevent this thing while typing space in a input box
use
within a keydown
or keypress
or keyup
event handler. You can check the keyCode
or even better the value of which
from the event object there and execute both functions from above.
Alternativly, you can just return false;
which actually will trigger the same functions for you.
Example:
$('input:text').bind('keypress', function(event){
if(event.which === 32)
return(false);
});