How can we call the trigger click event on a live object.
$("#continue").live("keypress",function(){
if (e.which == 32 || e.which == 13) {
$(this).trigger("click");
}
});
when i press enter on the button it is coming into if block but it is not triggering the button. can u please help me in this. Thanks in advance.