I tried it in the html view of the page that i want it on.
It doesn’t work, i’m not sure how to apply the javascript code within my wordpress page. Here is the full code i’ve been using:
<p align="center"><iframe id="photo" align="middle" frameborder="1" height="555" marginheight="25" marginwidth="25" name="I1" src="https://www.webite.com/Christmas/4.jpg" width="390"></iframe></p>
?
<p align="center"><strong>Enter Your Picture Code</strong> (Example: 2012-ABCDEF)</p>
<script type="text/javascript">// <![CDATA[
function loadFrame(el)
{
base = '.jpg';
base2 = 'Christmas/';
var f;
var fName = el.form.target;
if (fName && (f = window.frames) && (f = f[fName])){
f.location = base2 + el.value + base;
return false;
}
return true;
}
// ]]></script>
<form action="" target="photo" onsubmit="return loadFrame(this.URL);">
<p align="center"><input type="text" name="URL" size="25" />
<em><span style="font-size: 12px;">(Internet Explorer Only)</span></em>
For a full size photo type: large/2012-ABCDEF</p>
<p align="center"><input class="buttonstyle" type="submit" value="Get my picture!" /></p>
</form>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]