Currently, I'm able to make a table cell "linkable" based on the href attribute in an <a> tag (the way Hotmail used to). IE uses the scripting...
function mClk(src)
{
if(event.srcElement.tagName == 'TD')
{
src.children.tags('a')[0].click();
}
}
...and naturally, this only works in IE 4+. Using the 'childNodes' in DOM1, or any other tags, can I get a similar effect in NN6? I think NN4 is out-of-the-question.
jG
function mClk(src)
{
if(event.srcElement.tagName == 'TD')
{
src.children.tags('a')[0].click();
}
}
...and naturally, this only works in IE 4+. Using the 'childNodes' in DOM1, or any other tags, can I get a similar effect in NN6? I think NN4 is out-of-the-question.
jG