I want to use a link, but so that the mouse will NOT recognize it as one ((even for a split second)). Is there some code that is like onclick="go to this page", or one that means it? This is probably a stupid question (ask a stupid question get a stupid answer), and I think I've seen it before, but I don't know what it is.
christiandude03
07-24-2003, 05:30 AM
try
<a href="url" style="cursor:default;">link</a>
can you explain a bit further on what you are trying to achieve? there may be different solutions available for you.
I know the anchor <a> tag, but I don't want to use that. I'm trying to put a div layer in the bottom right hand corner so that when you click on it, it takes you to a different page. I can put the div layer in, but I don't know how to move when you click on it.
this is untested, but try adding this to your DIV tag...
OnClick="location.href='http://www.whateversite.com/';"
and change the site/page value to your desire.
Thanks, I think that's what I was looking for.