I want to open a link in new tab using a tag, the html for this looks like :
<a href=""
onclick="window.open( urlvalue, '_blank' );">MyLink
</a>
How could i implement it using Jquery and Javascript.
Note: This tag is inside a div, so I want to append the a tag inside that div as well.