Home : General : Internet Technologies :

General: Internet Technologies: Re: [Philip_Clark] Browsers: Edit Log

Here is the list of edits for this post
Re: [Philip_Clark] Browsers
Instead of:
Code:
if (browserName == "Netscape") {
document.write ('')
}else{
document.write ("<img src=\"images/seperator.gif\" alt=\"seperator\">")
}

Try:

Code:
if (browserName != "Netscape")
document.write ('<img src="images/seperator.gif" alt="seperator">');

Last edited by:

Paul: Apr 17, 2002, 2:42 AM

Edit Log: