vote up 0 vote down star

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?

flag

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

3 Answers

vote up 2 vote down check

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|flag
Awesome! It works as if by magic. – Steven Nov 7 at 14:00
If it works, put a tick by the side so that others know which is the answer. – thephpdeveloper Nov 7 at 14:03
I have put a tick. Is it okay? – Steven Nov 7 at 14:12
1  
yeah =) awesome. – thephpdeveloper Nov 7 at 14:14
vote up 2 vote down

You can use Javscript:

<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|flag
vote up 1 vote down

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|flag
I mean the mouse cursor will change when you hover it over the text. – Steven Nov 7 at 13:55

Your Answer

Get an OpenID
or

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