If you want a div to be clickable based on a standard HTML internal link, within that div, then use this jQuery snippet (requires jQuery Library):-
jQuery(document).ready(function($) { $(".parent-div").click(function() { window.location = $(this).find("a").attr("href"); return false; }); });
The code will rattle through the parent div looking for links and will then add the link it to that div. Useful for components that require clickable divs with custom defined structured content (portfolio grids etc).