So I\'m trying to make each list-item on my site clickable but I\'m not sure what is the best way to do it. Please help me out.
So here is the relevant HTML:
Here is a working solution - http://jsfiddle.net/STTaf/
I used simple jQuery:
$(function() { $('li').css('cursor', 'pointer') .click(function() { window.location = $('a', this).attr('href'); return false; }); });