Mouse Action
Posted: Wed Jan 14, 2004 7:36 am
I have couple of web links in my website and like to show more information about the web link when the mouse is over the web link. How to do that?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<a href="#" onmouseover="alert('you are over me, get off of me!')">get over me</a>Code: Select all
<a href="http://www.devnetwork.net" title="This is a link to www.devnetwork.net">PHPDN</a># in nay's code is probably just being used as a place holder. You should never have a link on a live site with just # in it, normally that means your site will not work properly with Javascript turned off.vigge89 wrote:do you really need the href='#' thing?
i don't know why that's important, to make the link appear as a link an not normal text or what?
oops, missed that he needed a LINK, and not just normal text with tiptwigletmac wrote:# in nay's code is probably just being used as a place holder. You should never have a link on a live site with just # in it, normally that means your site will not work properly with Javascript turned off.vigge89 wrote:do you really need the href='#' thing?
i don't know why that's important, to make the link appear as a link an not normal text or what?
Mac