Skip to content

Instantly share code, notes, and snippets.

@jaworowicz
Last active July 13, 2019 01:12
Show Gist options
  • Save jaworowicz/d40a22af37bd6e50944010f4ecaedc9a to your computer and use it in GitHub Desktop.
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/
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