Ok so I found this multi page form made with javascript here http://xoxco.com/projects/code/multipage/. It's the best thing I found since I'm not experienced with javascript but now my problem is how do I take the submit button and link that to a php file to process the request?
<script type="text/javascript">
    $(window).ready(function() {
        $('#multipage').multipage();
        $('form').submit(function(){
            alert("Submitted!");
            return false;
        });
    });
</script>
That's the script file for the html. Like where would I put the method?
Also, is there anyway to make it so when I have a email field, for the javascript to validate it since html5 can't.
 
     
     
    