vote up 1 vote down star

I have click-able images in my html page that call a javascript function... however nobody is clicking on them as they do not look click-able... how can I make them click-able without using an <a href=""></a> tag around it?

Here is an example of my code...

<div id="bvu11" style="margin: 0px 5px; float: left;">
     <span id="bviu11">
     <img src="/images/icons/favorites_add.png" onclick="favoritesAdd(2,11,'u')">
     </span>
</div>
flag

4 Answers

vote up 14 vote down check

Using CSS

Add a class to your image (ex: clickable-image) and this in your CSS:

.clickable-image
{
    cursor: pointer;
}
link|flag
vote up 1 vote down

As well as adding the cursor:pointer, perhaps some styling to your images/buttons would also make them appear to be links before the user even has to hover over them. Try a simple border, or dropshadow/glow on the images to give them a more 3D effect, making them look more "clickable"! Also, adding a hover state (a different styling to the image/button) really helps.

link|flag
vote up 0 vote down

Change

<div id="bvu11" style="margin: 0px 5px; float: left;">

to

<div id="bvu11" class="spanLink">

and add

.spanLink {
   margin: 0px 5px; 
   float: left;
   cursor: pointer;
}

to your css.

link|flag
vote up 3 vote down

Have a look at the css cursor property

<span id="bviu11" style="cursor: pointer;">
link|flag
3  
for goodness sake, don't add it as a style attribute. add a class to the span, then put cursor: pointer in the class. then you can change other style settings for this class in one place and your payload is smaller to boot. .bviu { cursor: pointer } .... <span id="bviu11" class="bviu"> – ferocious Jun 28 at 19:23
gotcha... will do that instead in my css, thanks. – Mike Curry Jun 28 at 19:26
Style attributes are good when it's only applied to one thing. Any more and you should more it to a class. – Isaac Waller Jun 29 at 1:35

Your Answer

Get an OpenID
or

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