Advertisement
hendrajeg

new tab to link function JS

May 24th, 2022
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_action('wp_head',function (){
  2.     ?>
  3.     <script>
  4.     jQuery(function($) {
  5.     $( document ).ready(function() {
  6.         var links = document.getElementsByClassName('jeg_btn-whatsapp ');
  7.         var len = links.length;
  8.  
  9.         for(var i=0; i<len; i++)
  10.         {
  11.         links[i].target = "_blank";
  12.         }
  13.     });
  14. });
  15.     </script>
  16.     <?php
  17. },99);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement