Forum Moderators: open
I have some gramatical problem.
Instead of an .gif like following
<a href="something.html" target="iframe" onclick="return goAnchor(this.target);"><img src="some.gif"></a>
I've tried to do the same with input type="submit" like
<input type="submit" value="something" class="button" onClick="location.href='#.html';">
but not as a pop-up but as an if frame like
<iframe id="iframe" name="iframe" src="descrizione_tisno.html" width=500 height=300 scrolling=no frameborder="0" class="frame">
Could somebody can halp me
thanks
:-)
and the link for iframe was
<a href="html_page_to_load_into_iframe.html" target="iframe" onclick="location.href(this.target);"><img src="#.gif"></a>
but, now I don't need it becouse I did it in much simplier way becouse I wanted to use a button as a button to load html into iframe.
Now I have:
<input type="submit" value="#" class="button" onClick="parent.iframe.location.href='html_page_to_load_into_iframe.html';">
so the problem is solved now
thanks anyway
:-)