Intellitxt not being blocked

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
TJ

Intellitxt not being blocked

Post by TJ »

http://forum.studioathome.com/viewtopic.php?id=868

On that site, Intellitxt ads aren't being blocked at all. On that page, on the second post the word "guitars" has an ad, and on the third post "sm57" also has an ad.

I'm using Adblock Plus 0.7.1 and with all 5 subscriptions, Filterset.G and some of my own on:

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060604 Firefox/1.5.0.4 (mmoy CE 1.5.0.4 K8B-X71)
ecjs
Posts: 170
Joined: Sun Jun 11, 2006 7:39 pm

Post by ecjs »

That's true.
<span
id="tooltip"
class="tooltip"
onclick="window.open('...);"
onmouseout="startTimeout(600);"
onmouseover="showIntelliTxtDemo('...');">

guitar

</span>
<span
id="tooltip"
class="tooltip"
onclick="window.open('...');"
onmouseout="startTimeout(600);"
onmouseover="showIntelliTxtDemo('...');">

sm57

</span>
Have a look at this code and use element hiding filters.
Last edited by ecjs on Fri Jul 07, 2006 6:52 pm, edited 3 times in total.
User avatar
rick752
Posts: 2709
Joined: Fri Jun 09, 2006 7:59 pm
Location: New York USA
Contact:

Post by rick752 »

@ TJ

forum.studioathome.com#*(onmouseover^=showIntelliTxtDemo)


.... actually blocks all of the Intellitxt popups ... BUT, the element cannot be removed without also removing the word that causes the popup ("guitars")
User avatar
Peng
Posts: 518
Joined: Fri Jun 09, 2006 8:14 pm
Location: Central Florida
Contact:

Post by Peng »

Code: Select all

forum.studioathome.com#span(iTt)
But you could still accidentally click on "guitar", and if you mouse over it, the box is still created and images in it are still loaded, it just isn't shown.

Greasemonkey could probably help.
Matt Nordhoff
User avatar
rick752
Posts: 2709
Joined: Fri Jun 09, 2006 7:59 pm
Location: New York USA
Contact:

Post by rick752 »

Peng wrote:

Code: Select all

forum.studioathome.com#span(iTt)
Ahhh .. very good, Peng. I found that one too after a little looking around.

That definitely seems to do the trick, though. Nice find!
User avatar
Peng
Posts: 518
Joined: Fri Jun 09, 2006 8:14 pm
Location: Central Florida
Contact:

Post by Peng »

:)
Matt Nordhoff
User avatar
rick752
Posts: 2709
Joined: Fri Jun 09, 2006 7:59 pm
Location: New York USA
Contact:

Post by rick752 »

I think while you were looking for that, that I was more infatuated by the fact that I could hide a "mouseover" command. I didn't realize that was possible.

I haven't really needed to use that element yet .... but it IS interesting, nonetheless.

I am definitely gonna store that one away in the old "memory banks". It may come in handy someday ....... y'never know :-)
TJ

Post by TJ »

That works nicely, thanks :)
ecjs
Posts: 170
Joined: Sun Jun 11, 2006 7:39 pm

Post by ecjs »

Peng wrote:

Code: Select all

forum.studioathome.com#span(iTt)
But you could still accidentally click on "guitar", and if you mouse over it, the box is still created and images in it are still loaded, it just isn't shown.

Greasemonkey could probably help.
Well done, you found the script in the source code.
Locked