Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape Problems

Status
Not open for further replies.

FRANDAZZO

Programmer
Nov 29, 2000
60
US
Hello all ,
Question - I have to disable some html controls. Not a problem in I.E. but they do not disable in Netscape. Basically I have a function and I call it in the onLoad of the body tag. In the funcion I have the following code:

function FormLoad()
{
document.frmQuestion.rdoCML[0].disabled = true
document.frmQuestion.rdoCML[1].disabled = true
document.frmQuestion.rdoCML[2].disabled = true
document.frmQuestion.rdoCML[3].disabled = true
document.frmQuestion.cboDose.disabled = true
document.frmQuestion.cboFrequency.disabled = true
document.frmQuestion.cboLength.disabled = true
}//end function

How do I make this work in Netscape.......

Thanks,
Frandazzo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top