In IE window.open open a new pop up window but in other browser it open a new tab especially in chrome, mozilla and safari.
There is a way to get a similar behaviour in all Browser by CSS3.
a{
target-name:new;
target-new:tab;
}
or
<a target ="_blank" style="target-new: tab;" onclick="window.open(url);" >
link
</a>
The above solution will work every where _blank will for other and target for IE .
Click here to see details
There is a way to get a similar behaviour in all Browser by CSS3.
a{
target-name:new;
target-new:tab;
}
or
<a target ="_blank" style="target-new: tab;" onclick="window.open(url);" >
link
</a>
The above solution will work every where _blank will for other and target for IE .
Click here to see details
No comments:
Post a Comment