Link to home
Start Free TrialLog in
Avatar of cuthburt
cuthburt

asked on

hide marqueee from netscape

ok i have a page that has a <marquee>bla bla</marquee>
and as we all know it is a internet explorer code only
how can i hide this from other browser netscape if i must be spicfic.
ASKER CERTIFIED SOLUTION
Avatar of martinag
martinag

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of martinag
martinag

Reject my answer.
You can of course use JavaScript:
<SCRIPT LANGUAGE="JavaScript">
<!--
var browser = navigator.appName;
if (browser.indexOf("Microsoft") > -1) {
  // Microsoft browser!
  document.write("<MARQUEE>This text is scrolling, but it's only visible in MSIE</MARQUEE>");
}
// -->
</SCRIPT>

Paste it where you want you marquee.

Martin
Avatar of cuthburt

ASKER

thanks you first awnser may not have been right but you did find me an anwnser..thanks...