I have a cookie value : clickotV
I have multiple href with the same class "t" :
<a href="link1.html" class="t">link1</a><a href="link2.html" class="t">link2</a><a href="link2.html" class="t"><img src="image2.jpg" /></a>
When cookie value is 1 :
I must replace all href with the class "t" by out.php and add target
_blankSo i do this :$(document).ready(function(){ if($.cookie('clickotV')==1){ $("a.t").attr("href", "/out.php"); $("a.t").attr("target", "_blank"); } });But I must replace the link origin (without
_blank) after user click on a replaced link (out.php)
How do I ?