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? Link to comment https://forums.phpfreaks.com/topic/75015-php-onmouseover/ 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();" Link to comment https://forums.phpfreaks.com/topic/75015-php-onmouseover/#findComment-379703 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.