hello all. I have an app that works in IE but I get this error in firefox
The code itself is pretty simple so I think I have just a syntax problem for firefox
Code:
FrameSet.children has no properties
The code itself is pretty simple so I think I have just a syntax problem for firefox
Code:
function fnChangeHyperLinks(whatPage)
{
//Find out what page in the main frame we are looking at: welcome, retrieve a quote, etc
var FrameSet = window.parent.document.getElementById("frmSet");
[b]var menuFrameObject = FrameSet.children[1].children[0];[/b]
var menuFrame = menuFrameObject;
var menuWindow = menuFrame.contentWindow;
if (whatPage=="welcome") //Show "Retrieve a quote" link, disable the other links
{
var hdnCountrySelected = document.getElementById("hdnCountrySelected").value;