Skip to content

Instantly share code, notes, and snippets.

@gilesbowkett
Created April 25, 2011 01:24
Show Gist options
  • Select an option

  • Save gilesbowkett/940044 to your computer and use it in GitHub Desktop.

Select an option

Save gilesbowkett/940044 to your computer and use it in GitHub Desktop.
hide lame stuff on twitter.com
$().ready(function() {
$("<style type='text/css'>.trends-inner{ display: none }</style>").appendTo("head");
$("<style type='text/css'>p.promo{ display: none }</style>").appendTo("head");
});
@gilesbowkett

Copy link
Copy Markdown
Author

to be clear, this eliminates the "trending topics" section, and the little ad links for the iPhone and iPad Twitter clients

@peterc

peterc commented Apr 25, 2011

Copy link
Copy Markdown

Cool, will give this a try! Any reason why you had to take this approach rather than $('.trends-inner').hide() though? (I know Twitter's rendering process is a Bit Complicated™)

@gilesbowkett

Copy link
Copy Markdown
Author

sry re delay. iirc using hide() just resulted in the call to hide() occuring before the elements satisfying the query even existed. I think I actually fiddled with LiveQuery unsuccessfully for a while before I threw my hands up and just went with the CSS hack.

@peterc

peterc commented May 26, 2011

Copy link
Copy Markdown

Ah, good point. I encountered similar issues with the "old" Twitter client when doing some work like this. Good call.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment