Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <script type="text/javascript">
  2. function onClick(href)
  3. {
  4. var ur=href;
  5. document.getElementById("tracker").src = "<Put your image link here>";
  6. window.location=ur;
  7. }
  8. </script>
  9.  
  10. <img id="tracker" src="#">
  11. <a href="#" onClick="onClick('<Put your redirect link here>')">Click Here</a>
  12.  
  13.  
  14. Replace:
  15.  
  16. <Put your image link here> totally by link1.
  17. <Put your redirect link here> totally by link2 or redirect link
  18.  
  19. If you dont want to put it on <a> tag then just copy onClick="onClick('<Put your redirect link here>')" section to other tag where you like to paste.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement