up vote 1 down vote favorite
share [g+] share [fb]

Besides <input type="button" value="Click me" />, <input type="submit" value="Click me" />, <a>Click me</a>, is there another way that can make "Click me" clickable?

link|improve this question

72% accept rate
2  
I presume you mean without client script? – Russ Cam Nov 7 '09 at 13:47
feedback

3 Answers

up vote 2 down vote accepted

With Javascript and CSS, you can make almost everything click-able.

<img src="photo-thumbnail.jpg" onclick="popup_image('photo.jpg');" style="cursor:pointer;" alt="" />

Setting cursor:pointer will make an element look clickable.

But again, that will only work if Javascript is enabled.

link|improve this answer
Awesome! It works as if by magic. – Steven Nov 7 '09 at 14:00
If it works, put a tick by the side so that others know which is the answer. – thephpdeveloper Nov 7 '09 at 14:03
I have put a tick. Is it okay? – Steven Nov 7 '09 at 14:12
1  
yeah =) awesome. – thephpdeveloper Nov 7 '09 at 14:14
feedback

You can use Javascript:

<span onclick="...">Eat me</a>

This of course only provides the reaction to the click, if you want to make it look clickable also you have to add some styling.

link|improve this answer
feedback

By clickable do you mean something other than that it causes JavaScript onClick events to fire? Any DOM component should do that. If you want to change the cursor to indicate that something will happen when text is clicked, you can do that with CSS.

link|improve this answer
I mean the mouse cursor will change when you hover it over the text. – Steven Nov 7 '09 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.