• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

I dont know whether the style runs on Netscape or not ?

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there,
I had a code like when a link is clicked it gets disaapeared, it works on IE but doesn't work on Netscape.
The Code is:
<html><head></head><title>Hi</title>
<body>
<div id="c1"><a href="#" onClick="c1.style.visibility='hidden'">Hi There</a></div>
</body></html>
This simple code works on IE but not on Netscape. Can u help me out.
Thankz...
 
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
from the top of my head...
i think the syntax is diff for ie and netscape
ie is "hidden" and "visible"
and netscape is "show" and "hide"
also i am not sure if netscape supports inline styles like the way you've used em. Either use a external .css file and define your styles there or have em in <style></style> and then use javascript to change the properties of individual tag
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i dont think that's possible with netscape...course, i uttery dispise netscape. About as must as America Online, at least.
 
manav kher
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hey rudyard if you don't know then why do u have to post a reply to the query??..ofcourse it is possible in netscape just do what i suggested in my earlier post
manav
 
reply
    Bookmark Topic Watch Topic
  • New Topic