Hi I'm writing a google chrome extension that redesigns tumblr for a project,
I'm trying to get rid of the 'notes' after the number of notes.
So far I have used this, except tumblr loads more posts as you scroll down and those don't get affected... :/
How would I trigger this function everytime more posts get loaded, or another way?
$('.note_link_current').each( function(index) {
// Inside this function, "this" refers to the (DOM) element selected
var text = $(this).text();
/* ... */
});
Any help would be appreciated...