Created
October 3, 2021 21:55
-
-
Save imuhammadshoaib/90410dbcffba5b983cb458d0446132fd to your computer and use it in GitHub Desktop.
How to remove Nitropack footer?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function(){ | |
setTimeout(function(){ | |
//var np_tag = jQuery("template").eq(38).attr("id"); | |
var np_tag = jQuery("template").last().attr("id"); | |
console.log(np_tag); | |
//alert(tag_new); | |
jQuery("#" + np_tag).css("display", "none"); | |
jQuery("#" + np_tag).next().next().css("display", "none"); | |
}, 100); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment