Hi,
Please look at this code
<div class="box">
<a href="http:www.google.com" target="_blank">click</a>
</div>
//css
.box { width:250px; height:250px; border:1px solid red; }
//script
$('.box').click(function(){
$(this).find('a').trigger('click');
});
How to set target _blank when clicking the div.box.
click is working fine but it opens the page in same window.
Can you anyone have idea..
Thanks in advance,
Developer