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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

set font color

Status
Not open for further replies.

iis6newbie

Technical User
Nov 22, 2003
54
0
0
US
Hello all,

can some one help me with the font color of the textbox on the parent window from the child window?

self.opener.document.getElementById('txtBox').color="blue"


Thanks
 
I would do it this way:

Code:
<a href="#" onclick="opener.document.forms['formname'].elements['fieldname'].style.color = 'blue'; return false;">Change</a>

*cLFlaVA
----------------------------
[tt]insert funny quotation here.[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top