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)
Intellitxt not being blocked
That's true.
<span
id="tooltip"
class="tooltip"
onclick="window.open('...);"
onmouseout="startTimeout(600);"
onmouseover="showIntelliTxtDemo('...');">
guitar
</span>
Have a look at this code and use element hiding filters.<span
id="tooltip"
class="tooltip"
onclick="window.open('...');"
onmouseout="startTimeout(600);"
onmouseover="showIntelliTxtDemo('...');">
sm57
</span>
Last edited by ecjs on Fri Jul 07, 2006 6:52 pm, edited 3 times in total.
Code: Select all
forum.studioathome.com#span(iTt)
Greasemonkey could probably help.
Matt Nordhoff
Ahhh .. very good, Peng. I found that one too after a little looking around.Peng wrote:Code: Select all
forum.studioathome.com#span(iTt)
That definitely seems to do the trick, though. Nice find!
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
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

Well done, you found the script in the source code.Peng wrote: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.Code: Select all
forum.studioathome.com#span(iTt)
Greasemonkey could probably help.