Aurangajeb

Remove Nitropack footer banner

Dec 22nd, 2021
2,027
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.40 KB | None | 0 0
  1. /** Remove Nitropack footer banner*/
  2. jQuery(document).ready(function(){
  3.  
  4. setTimeout(function(){
  5.  
  6.      //var tag_new = jQuery("template").eq(38).attr("class");
  7.      var tag_new = jQuery("template").last().attr("class");
  8.      console.log(tag_new);
  9.  
  10.      //alert(tag_new);
  11.      jQuery("#" + tag_new).css("display", "none");
  12.      jQuery("#" + tag_new).next().next().css("display", "none");
  13. }, 100);
  14.  
  15. });
Advertisement
Add Comment
Please, Sign In to add comment