I opened a new window by window.open in JavaScript, the probleme that it work just after refresh
    var url=document.getElementById("largeImage").getAttribute("href");
   $("#largeImage").click(function(e){ e.preventDefault();
   var win=window.open(url);
  });
 
     
    