Starting with HTML5, you may simply wrap your flow content within your anchor tag.
<a href="http://example.com/">
<div class="special">
<img src="http://example.com/news.jpg" alt="Great Picture" />
<p>Great News! This whole section is clickable!</p>
</div>
</a>
This allows for the functionality you want without using clunky JavaScript code, and doesn't break browser gestures (middle click for new tab).
A few rules however apply in order to stick to the HTML5 standard:
The parent tag of your <a> must allow for flow content. The anchor tag in HTML5 has a transparent content model, meaning that it adopts the model of its parent.
You may not place any interactive content (e.g. buttons or other links) within your anchor tag.
Note that this works in all browsers, including Internet Explorer 6. However, make sure you set the display style of your <a> tag to either block or inline-block depending on the desired result.
hrefis already specified in the anchor tag? – Nirmal Feb 18 '12 at 5:26linkwithvaror it will be a global variable. – nnnnnn Feb 18 '12 at 5:29linkclass given to the div. – Nirmal Feb 18 '12 at 5:34