Hi danBosh,
try this :
<u><font style='cursor:hand'" color="#0000FF">Hello</fon
Cheers!
Main Topics
Browse All TopicsI want items on the page that show the little pointy hand like href but dont got any where
i have tried
<a href=""........this has the hand but it links to a page
<a href=#........but this jumps to the top of the page which is very annoying
is there anyway of having th clicky hand to show the user the item is clickable, without having any page jump or refresh
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Although I'm not sure why one would want something that looks like a link, but isn't, here is a choice:
<html>
<head>
<title>looks like a link</title>
<style>
<!--
.linklook {cursor:pointer;cursor:han
.nonlink {color:red;cursor:pointer;
-->
</style>
</head>
<body>
Place your mouse over this text:
<span class="linklook" onMouseover="this.classNam
</body>
</html>
Just a note on the hand/pointer:
The basic problem is this: Internet Explorer 5.x for Windows recognizes the value hand, which appears nowhere in section 18.1 of CSS2-- nor anywhere else in the specification, for that matter. The value which most closely corresponds to the behavior of hand is pointer, which the specification defines as: "The cursor is a pointer that indicates a link." Note that doesn't say anything about a hand appearing, but going by browser conventions to date, the practical effect is the same.
Unfortunately, IE5.x/Win doesn't recognize the value pointer as meaning anything at all. IE6/Win and IE5.x/Mac do both recognize pointer as well as hand, fortunately. Meanwhile, Mozilla and Netscape 6+ follow the CSS2 specification and handle pointer, but ignore the proprietary value hand.
So if Mozilla/Netscape ignores hand and IE5.x/Win ignores pointer, what's an author to do? Ask for both in the proper manner, and you shall be rewarded:
a {cursor: pointer; cursor: hand;}Do not reverse those two values! If you write your styles as shown above, then NS6+ will see the first value and ignore the second, so you get pointer. In IE5.x/Win, it sees both and uses the second, so you get hand. If you reverse the values, then Netscape 6+ will be okay, but IE5.x/Win will see both and try to use the second. That won't get you the little hand-pointer icon in IE5.x/Win.
From: http://devedge.netscape.co
Whoops, my bad Bustarooms, but I still think it IS the right way to do it. Thinking logically, if the item is supposed to be "clickable" according to danBosh, but not go anywhere, it is going to use javascript anyway. Just add "return false;" to the end of the onClick handler and it'll work fine. No need to reinvent the link...
{Slam}
ROFL, my what an interesting thread. So many responses, so many outbursts saying this is btter dont do this person way etc. I say use this.
//////////////////////////
Comment from jlouwere
Date: 01/22/2004 04:33PM EST
Comment
If it NEEDS to be an href, you can use <A href="javascript:void(0)">
//////////////////////////
CSS is the the best way to fake a link, but if you want to stick with <a>'s and dont want the extra code involved with CSS then use jlouwere's solution.
-Nick
Business Accounts
Answer for Membership
by: brunobearPosted on 2004-01-22 at 06:53:14ID: 10174269
Hi danBosh,
<span style="cursor: pointer;">hi there</span>
bruno