I’m wondering if it is possible to keep an HTML page in view, or at least part of it after a form submit button is press. I was planning on having the top of the page with log-in fields and I wanted the top of the page to stay after hitting the submit button, so authentication would be processed, and a new bottom of the page is displayed. Is this possible?
Share
you could use jQuery and AJAX to do this. when the AJAX request has been sent, you hide the bottom section and then, on completion, the new bottom section is loaded. have a look into it. if you need a code sample i’ll be happy to supply some.
http://api.jquery.com/jQuery.ajax/