Jump to content

PHP OnMouseover??


Padgoi

Recommended Posts

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/75014-php-onmouseover/
Share on other sites

<span id="spanname" style="background-color: #87cefa;" onmouseover="document.getElementById('spanname').style.backgroundColor='#ffff00'" onmouseout="document.getElementById('spanname').style.backgroundColor='#87cefa'">Sample text</span>

 

EDIT: Forgot the onmouseout event, to change the color back again. Added.

 

Or you could use CSS, but I'm not sure it would work in old browsers:

 

span#spanname {
background-color: #87cefa;
}

span#spanname:hover {
background-color: #ffff00;
}

Link to comment
https://forums.phpfreaks.com/topic/75014-php-onmouseover/#findComment-379353
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.