Hello again
Site I'm working on: http://www3.telus.net/bikim/lightning/test/
- 'coach' & 'main' links swap innerHTML of div element - id 'textArea'
works fine in NN7; IE6 reports 'Object doesn't support this property or method'
code is:
function showText(text)
{
var tA = document.getEle mentById('textA rea');
tA.innerHTML = text;
}
Microsoft website says getElementById and innerHTML are supported.
Maybe my function call:
<a href="javascrip t:showText(coac hText)">coach</a>
<a href="javascrip t:showText(main Text)">main</a>
Thanks
--
Phil Newcombe - philn?telus?net
Netscape/Gecko/Mozilla - standards conformance and cooperation
Internet Explorer - standards obfuscation and divergence
Linux += 30,000/Germany + 80,000/Spain + tomorrow
Site I'm working on: http://www3.telus.net/bikim/lightning/test/
- 'coach' & 'main' links swap innerHTML of div element - id 'textArea'
works fine in NN7; IE6 reports 'Object doesn't support this property or method'
code is:
function showText(text)
{
var tA = document.getEle mentById('textA rea');
tA.innerHTML = text;
}
Microsoft website says getElementById and innerHTML are supported.
Maybe my function call:
<a href="javascrip t:showText(coac hText)">coach</a>
<a href="javascrip t:showText(main Text)">main</a>
Thanks
--
Phil Newcombe - philn?telus?net
Netscape/Gecko/Mozilla - standards conformance and cooperation
Internet Explorer - standards obfuscation and divergence
Linux += 30,000/Germany + 80,000/Spain + tomorrow
Comment