how to prevent the form from getting automatically submitted javascript
//add event.preventDefault() example,
function clickHandler(event){
alert("Hey you clicked the submit button");
event.preventDefault();
}
//this will prevent the page from getting automatically refreshed after
//the submit button is hit.