Last active
July 13, 2019 01:12
-
-
Save jaworowicz/d40a22af37bd6e50944010f4ecaedc9a to your computer and use it in GitHub Desktop.
PL: Usuwanie elementów ze strony internetowej (wg selektorów) EN: Remove elements from body by selector BY: Jakub Jaworowicz https://jaworowi.cz/
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(".columnpost").find('.imagewrap').each(function() {jQuery(this).remove()}); | |
jQuery(".columnpost").find('img').each(function() {jQuery(this).remove()}); | |
jQuery(".columnpost").find('#img').each(function() {jQuery(this).remove()}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment