aooga Posted February 1, 2009 Share Posted February 1, 2009 How to refer to DOM object in div classes (from my CSS)? When I click on the word Red it doesn't turn the background red, I'm assuming because of my css divs. What is the correct code? <body><div class="colmask leftmenu"><div class="colleft"> <div class="col1" align="center"> <span onclick="document.bgColor = 'red';">Red</span> </div></div></div></body> As for the divs, I'm copying the layout from http://matthewjamestaylor.com/blog/ultim... So my main content is in a div. The script works fine without the div, I think it's just a matter of - instead of document.bgcolor, document.div.div.bgcolor or something like that. Any ideas? Quote Link to comment Share on other sites More sharing options...
Psycho Posted February 1, 2009 Share Posted February 1, 2009 Just give whatever DIV you want to modify an ID, then use document.getElementById('DIV_ID').style.backgroundColor='#ff0000'; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.