Padgoi Posted October 27, 2007 Share Posted October 27, 2007 Ok, I have this line of code and I want to add a onMouseover change background color to it. Can anyone help me with this? Here's the line: $topic['PAGES'] .= '<span class="desc" style="margin-left:15px;background:#87CEFA; border: 1px solid #976621; width:20px; padding: 3px;"><a href="' . $this->ipsclass->base_url . 'showtopic=' . $topic['tid'] . '&view=getnewpost" style="font-size: 10px;text-decoration:none;">' . $newPosts . ' ' . $this->ipsclass->lang['pz_newposts'] . $incS . '!</a></span>'; Right now, the background is specified as 87CEFA, but I want it to change to something else onMouseover. Any help? Quote Link to comment Share on other sites More sharing options...
rochakchauhan Posted October 28, 2007 Share Posted October 28, 2007 function change(){ document.getElementById('idOfTheElemeny').style.backgroundColor="#FF00000": } onmouseover="change();" 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.