View Full Version : link without anchor tag


DTT
07-24-2003, 03:02 AM
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>

pb&j
07-24-2003, 07:02 AM
can you explain a bit further on what you are trying to achieve? there may be different solutions available for you.

DTT
07-24-2003, 03:19 PM
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.

pb&j
07-24-2003, 04:05 PM
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.

DTT
07-24-2003, 07:21 PM
Thanks, I think that's what I was looking for.