Can anyone tell me why the javascript I have on my page (to enlarge an image upon double clicking) will not work with Netscape? Is there a way to make this work on Netscape?
Also the text in the table on the right (specifically #2) is messed up in Netscape. Any ideas?
You used the onDBLClick function, NS4 does not support this feature. You must
change it to an onMouseUp or onMouseDown event![QUOTE]
That is correct but the script is not compatible with Netscape. But unfortunately a script may be hard to find that is.
There is a script that will work in both Browsers clicking the image will load the larger image on a new html page, clicking that image will bring you back.
Put this in the head of the page that has all the images.
<HEAD>
<script language="JavaScript1.2">
<!-- Begin
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, menu=yes, scrollbars=auto');
}
// End -->
</script>
>/HEAD>
And this in the body. This is for one image, add as many as you need.
<a href="javascript:void(0);"
onMouseOver="window.status='CA Snow'; return true"
onMouseOut="window.status=' '; return true"
onClick="fullScreen('New-IMAGE.html');">
<img src="YOUR-IMAGE.jpg" width="75" height="50" alt="Your-image" title="CA Snow" border=0 align="left"></a>
Snow in California by Joe<br>
<i><font size="-1">Make comments here
</font></i>
For each image you need to call back the the page with all the images like this.
Subsitute < and > for < and > using find/replace or copy it and paste it as the source in a html doc. View it and copy it again from there to use.
As for tables in Netscape---- You need to put closing tags in the first table and it will come right. You have some work ahead.
Bookmarks