delphi programming forums mysql charset mget recursive synonimos
free ventrilo servers hosting cs javascript delay python find in list
Back Forum New
abstract:

document.getElementById('setname').style.display = 'none';
document.getElementById('noname_fr').style.display = 'block';


I am doing something like following. I tested my code on IE, FireFox, Netscape, it works. Is there any major browser that does not
support    div and style.display
Code:
  1. <div id="setname" style="DISPLAY: block" align="center">
Copy Code
Code:
  1. document.getElementById('setname').style.display = 'none';
  2. document.getElementById('noname_fr').style.display = 'block';
Copy Code

TOP

No, those two are pretty universal to all major browsers for several versions back.



document.getElementById('setname').style.display = 'none';
document.getElementById('noname_fr').style.display = 'block';

TOP

Back Forum