I have an unordered list containing links.

I styled the list so that there is a "Click Me" image to the left of the link.

ul 
{ 
    list-style-image:url(/images/ClickMe.png)
}

The problem is: when the user clicks on "Click Me", they are not redirected and nothing happens.

How do I make a click of the list image trigger a click of the link in that list element?

<ul>
    <li><a href="someurl">Some Url</a></li>
    <li><a href="someotherurl">Some Other Url</a></li>
</ul>
link|improve this question
feedback

5 Answers

You can always make the item clickable through jQuery:

$("li").click( function (evt) {
    location.href = $(evt.currentTarget).find("a").attr("href");
});
link|improve this answer
+1 However, if javascript is disabled the bullets are still not clickable. Good option if you cannot use some CSS trick or don't want to test your trick on all browsers available. – MarvinLabs Dec 13 '10 at 15:00
feedback

This is more of a CSS problem I think, because the list bullets are not actually part of the a tag. You can cheat like this (see the jsfiddle snippet):

ul
{ 
    list-style: disc;
    list-style-position: inside;
    padding: 0;
    margin: 0;
}

a {
    margin-left: -20px;
    padding-left: 20px;
}
link|improve this answer
feedback

I don't know if there's a better way to do it but this works:

a{
  margin-left: -2em;
  padding-left: 2em;
}
link|improve this answer
feedback

Incidentally, this also works, but does not pass validation, does anyone knows if there's a correct way of doing it?

<body>
    <ul>
        <a href="someurl"><li>Some Url</li></a>
        <a href="someotherurl"><li>Some Other Url</li></a>
    </ul>
</body>
link|improve this answer
feedback

If you only need the list to have those bullets, you can do it also without lists:

<style>
a{ 
    display:list-item;
    list-style-image:url(/images/ClickMe.png);
    list-style-position:inside;
}
</style>
<div style="padding:12px;">
  <a href="someurl">Some Url</a>
  <a href="someotherurl">Some Other Url</a>
</div>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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