Skip to content Skip to sidebar Skip to footer

How To Use Greasemonkey To Remove A Href Block

I'm trying to remove the following line of code from http://trakt.tv/calendars/my/shows/ using Greasemonkey:

Solution 1:

You may try it with jQuery. Please refer to this question for using jQuery in Greasemonkey.

The JavaScript code would be like:

$("a[href='/vip']").remove();

Post a Comment for "How To Use Greasemonkey To Remove A Href Block"