Hello everyone;
I have a hyperlink that opens a popup window and displays a image.
I would like to load the image automatically in a seperate popup window, when the page loads without clicking the hyperlink.
I am not sure what I need to do at this point. Hopefully I might receive some suggestions. Thank you for taking the time to read this post. Thanks again
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=400,height=200,scrollbars=yes');
return false;
}
//-->
</SCRIPT>
<A
HREF="c:\thumbnail.jpg"
onClick="return popup(this, 'notes')">my popup</A>
I have a hyperlink that opens a popup window and displays a image.
I would like to load the image automatically in a seperate popup window, when the page loads without clicking the hyperlink.
I am not sure what I need to do at this point. Hopefully I might receive some suggestions. Thank you for taking the time to read this post. Thanks again
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=400,height=200,scrollbars=yes');
return false;
}
//-->
</SCRIPT>
<A
HREF="c:\thumbnail.jpg"
onClick="return popup(this, 'notes')">my popup</A>