Skip to content

Instantly share code, notes, and snippets.

@catbadger
Created April 9, 2021 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catbadger/7b5b2b43025607ca75b3bb77dba76139 to your computer and use it in GitHub Desktop.
Save catbadger/7b5b2b43025607ca75b3bb77dba76139 to your computer and use it in GitHub Desktop.
TD internet banking row hiding from chrome js console using baked in jquery
//I paste this into the console when I need to make a report showing someone forgot to pay stuff
$('.td-callout-content table td[id^=name]').each(function(index, td){
if ( $(td).html() != "Person's Name Text"){
$(td).parent().hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment