How can we call the trigger click event on a live object.
$(\"#continue\").live(\"keypress\",function(){ if (e.which == 32 || e.which == 13) { $(this).trigg
You need to check if the $(this) really matches your button.
Try replacing :
$(this).trigger('click')
With
$('#continue').trigger('click')