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 use the argument "e", but never actually pass it in as an argument.
$("#continue").live("keypress",function(){
needs to be:
$("#continue").live("keypress",function(e){