MrKen MrKen (SV!) [Off] [#] (21.08.2018 / 08:44)
Unused!
Phiên bản tối ưu
  1. <script>
  2. var a = document.getElementsByTagName('a');
  3. for (var i = 0, j = a.length; i < j; i++) {
  4. if(/^redirect\.php/.test(a[i].getAttribute("href"))){
  5. a[i].addEventListener("click",function(e){
  6. e.preventDefault();
  7. url = this.getAttribute("href").split("url=")[1];
  8. window.location = decodeURIComponent(url) ;
  9. })
  10. }
  11. }
  12. </script>