Is it possible to make a link that does nothing?
I want the item to be a link so I get the cursor to change on mouseover, but I don\'t want the link to actually go anywhe
Just add the style cursor:pointer to the element:
cursor:pointer
Click Me
CSS:
#clickme { cursor: pointer }
Or (heaven forbid) in-line: