So aesthetically it drives me crazy that when moving away from the new "quick" features it loads the content in the iframe first, and then "pops out"...
There is a simple solution to this... add "parent." to the beginning of all the JavaScript buttons.
*I use a custom button, so your code wont look exactly like this, but you can get the idea.
Added benefit: I am not sure if it really IS faster, or just looks faster... but deferentially the site seems snappier.
There is a simple solution to this... add "parent." to the beginning of all the JavaScript buttons.
Code:
<button type="submit" style="margin-top:0px;" class="positive" name="Checkout" onClick="parent.window.location='checkout.asp?step=1'"><img src="assets/images/designelements/icons/cart_go.png" alt=""/>Check Out</button>
Added benefit: I am not sure if it really IS faster, or just looks faster... but deferentially the site seems snappier.
Comment