I am newbie to java script. I am bit confused about key-press and change event.
Following is sample code
$("input").live('change',function ()
{
Alert("Change event call");
});
/
$("input").live('keypress',function ()
{
Alert("Keypress event call");
});
When exactly Keypress event is call and change event call?
Change event
Keypress event
References: