I need to make an area within a background image clickable to generate an event for JavaScript use. So, I created an anchor tag and inside that I inserted some relevant text between semantically meaningless tags which I then made hidden:

<a href="#"><i>foo</i></a>

Then I gave the anchor tag 'display:block' properties, width and height values, and absolutely positioned it where I needed it to be in relation to the background image. In Firefox this works nicely - I hover over and my cursor changes as expected - I've got something clickable. IE7 however, doesn't like the fact that the anchor tag is 'empty' and therefore doesn't treat it as clickable. So I added this to the anchor tag in css:

background:url(/no-image.jpg);

...which seems to fool IE7 into assuming something is there. IE7 now treats the area as clickable, even if no background image actually exists for the anchor tag. But this seems like a bit of a hack to me and I'm wondering if there is a more elegant way to deal with this problem. Any ideas would be greatly appreciated. Thanks.

link|improve this question

78% accept rate
This issue also occurs in IE8 as well. – Amir Jan 5 '11 at 19:42
feedback

3 Answers

up vote 9 down vote accepted

Get rid of the semantically meaningless tags and use normal CSS image replacement, instead.

<a href="#">foo</a>

And then the CSS:

a { 
    width:100px; 
    height:100px; 
    display:block; 
    text-indent:-9999px; 
    background:url(/img.png) no-repeat;
}

Add whatever positioning you need, and it should work just fine.

link|improve this answer
This is what stackoverflow uses for its vote up and vote down arrows. :-) – AppleGrew Sep 1 '11 at 4:52
Some people are starting to discourage the use of it now in favour of the old image method: google.co.uk/search?q=stop+using+css+image+replacement+text – Hari Karam Singh Nov 5 '11 at 17:23
feedback

It looks like you've found a rendering problem with IE. Your hack will work OK but the browser will make an HTTP request each time to resolve the bogus URL, which may hurt performance of your page. I'd suggest using this workaround instead which achieve the same result but not make an HTTP request:

background-image:url(about:blank);

BTW, the problem only happens when you have an absolutely or relatively-positioned A tag (or an A tag inside a positioned block). Regular non-positioned hyperlinks don't seem to have this problem under IE7.

link|improve this answer
do you mean use the anchor tag with a target="_blank" attribute? – echobase Nov 2 '09 at 22:08
Nope. I mean don't use a real URL for your background-image that IE will have to fetch. Use about:blank in your CSS which is a special URL that doesn't cause an HTTP request. Your HTML is fine-- the problem is purely CSS-related – Justin Grant Nov 2 '09 at 23:39
Yeah, the issue seems to still exist as of IE 9. Your trick worked nicely, thanks! – Simon Feb 9 at 12:08
feedback

Make a DIV clickable instead. If it's calling JavaScript, you don't need an anchor tag at all.

You can absolutely position if if needed.

<div onclick="alert('moo')" style="height;100px;width:100px;cursor:pointer"></div>
link|improve this answer
yeah, i think that would work, but one thing i should've mentioned earlier is that I would like to retain the anchor tag... there is the rub. – echobase Nov 2 '09 at 22:06
feedback

Your Answer

 
or
required, but never shown

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