html-
<div class="hbg">
</div>
some menu items here
jquery for mouser over on menu items-
function imgchange()
{
$('.smenu li').mouseover( function(){
var src = $(this).find('a').attr('alt');
$('.hbg').css('background-image', 'url(' + src + ')');
$(this).find('hbg').attr('title', 'my tootip info');
});
}
I am changing the background image of hbg
div through jquery on mouse over of menu items(ul li).but i want to bind(href) that div to particular page also so that when user clicks anywhere on div it should redirect to that binded page.as it is redirecting on clickin on li
items.
Is there any property in jquery where we can set the whole div as hyperlink?