Hi, i have a link with an ID with the rel=noreferrer property (in case you dont know, this means that the user will go to the href value, and the destinatary site won't know that they came from my site).
<a href="http://google.com" id="mylink" rel="noreferrer">click here</a>
If i use this jquery command, will the "rel" property still work?
$('#mylink').click();