Hi,
I have a web page with frames. In one frame I have a graphic wrapped in <A HREF...> so it acts like a link.
When clicked I want to run a javascript in a different frame. The target frame has this script (an easy one for now which I will replace with something useful later)...
<Script Language="Javascript">
function zz(that)
{
window.alert("hi"
;
}
</Script>
How do I complete the tag in the first frame. So far I have...
<A HREF="csstest.html" target="Main"><Img src="click1.gif"></a>
This doesn't get the script to run. What do I have to add to the tag?
Thanks,
Ken B
I have a web page with frames. In one frame I have a graphic wrapped in <A HREF...> so it acts like a link.
When clicked I want to run a javascript in a different frame. The target frame has this script (an easy one for now which I will replace with something useful later)...
<Script Language="Javascript">
function zz(that)
{
window.alert("hi"
}
</Script>
How do I complete the tag in the first frame. So far I have...
<A HREF="csstest.html" target="Main"><Img src="click1.gif"></a>
This doesn't get the script to run. What do I have to add to the tag?
Thanks,
Ken B