It was 2:
You have no iframe with a name attribute set to 'prdfrm2'.
From your source code:
Code:
<iframe id="prdfrm2" src="http://cart3.jaspers-sensations.com/stage/page2.html" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none"></iframe>
You have an id attribute set to 'prdfrm2', but no name attribute, try this:
Code:
<iframe name="prdfrm2" id="prdfrm2" src="http://cart3.jaspers-sensations.com/stage/page2.html" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none"></iframe>
Note: Some browsers will still work with targeting a link to an id of an iframe, but the standard method was for many years the name attribute, and some other browsers (notably IE) still require it.
Bookmarks