I'm attempting this tutorial - http://mobile.tutsplus.com/tutorials/mobile-web-apps/jquery-mobile-forms/ to get a jQuery form up and running. I'm using jsp instead of php, so instead of requestProcessor.php(as specified by tutorial) I have requestProcessor.jsp
Here is my requestProcessor.jsp -
<%
out.print("FTREIK12345678");
%>
Here is the jQuery im using to submit the form -
$.post("/forms/requestProcessor.jsp", form1Var.serialize(), function(data){
confirmationVar.text(data);
hideContentTransition();
showConfirmation();
});
I dont seem to be receiving any data back from the server. I dont know what im doing wrong.
Any help is very much appreciated.