Hi

Please change menu.html in exmaples... ('innerText' ==> 'innerHTML')
to provide Firefox compatibility.

function toggle() {
        show = show == "*" ? "0" : "*";
        document.getElementById("Toggle").innerText= show == "*" ? "Hide" : 
"Show";
        top.document.getElementById("winFrames").rows = "*,"+show;
}

to:

function toggle() {
        show = show == "*" ? "0" : "*";
        document.getElementById("Toggle").innerHTML= show == "*" ? "Hide" : 
"Show";
        top.document.getElementById("winFrames").rows = "*,"+show;
}

--
Regards, Kym Farnik
mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
http://www.farnik.com Trivia: My 1st Computer
http://en.wikipedia.org/wiki/IBM_1130
Phone:  +61 8 8265 5324
Mobile: 0438 014 007
----------------------------------------------------------------------
For information about J forums see http://www.jsoftware.com/forums.htm

Reply via email to