I've probably overcomplicated things, but being relatively new to the whole process, I didn't know what else to do. I have an order form inside an iframe, which is inside a jQuery UI dialog lightbox. It all works, except for one problem: when the form is submitted and it redirects to either the thank-you or error page, it's scrolled at the bottom.
I've tried using onload="window.parent.scroll(0,0);" in the tags of the thank-you and error pages, but that didn't do anything.
Also tried:
<script type="text/javascript">
$("#orderform").onsubmit(function() {
$("#dialog").window.scrollTo(0,0);
alert('triggered');
});
</script>
I've placed the script everywhere I could think of, the index page, inside the for the dialog, inside the iframe, in the form's page, never even got an alert.
The test server currently hosting the site is http://kinnill.com/dev/bluehydrangea/
