I am trying to press tab and enter key through javascript/jquery on page load.
like:
  if(event.keyCode == 13){
    $("#submit").click();
  } 
this would only work when user presses the enter key but I want the javascript to do this stuff for the user on page load.
 
     
     
    