Mouseovers

Suggest or request default filters here. Please include your current Ad Muncher version and any applicable URLs.

Moderators: Murray, Jeff

Mouseovers

Postby J03 » Thu Oct 20, 2005 1:39 am

On certain forums, the webmasters have javascript mouseovers when you hover over a topic. Two in question is broadbandreports.com:

http://www.broadbandreports.com/forum/security

When you hover over a thread, a mouseover appears giving a popup box showing some of the contents of the thread.

and at another forum, cdfreaks.com, they are doing the same thing:

http://club.cdfreaks.com/forumdisplay.php?f=3

How do I prevent these mouseovers/popups from appearing?

Thanks!
J03
 

Postby Jeff » Thu Oct 20, 2005 4:35 am

It's not javascript.

They're just using the title= attribute to create it.

There is nothing bad about it, so it's not blockable at this time.
That's not an ad blocker... THIS is an ad blocker.
---
No bovines were harmed in the making of this program.
---
My first popup stopper blocked too much.
My second popup stopper didn't block enough.
Ad Muncher was juuuuust right.
User avatar
Jeff
Ad Muncher Developer
 
Posts: 5466
Joined: Thu Mar 10, 2005 5:16 am
Location: California, United States

Postby J03 » Thu Oct 20, 2005 2:41 pm

Thanks for the response back Jeff.

It's too bad that AdMuncher cannot filter this.

Do you know of any other way to stop these mouseovers?
J03
 

Postby Jeff » Thu Oct 20, 2005 4:10 pm

They're called tooltips.
And no I'm afraid not.
That's not an ad blocker... THIS is an ad blocker.
---
No bovines were harmed in the making of this program.
---
My first popup stopper blocked too much.
My second popup stopper didn't block enough.
Ad Muncher was juuuuust right.
User avatar
Jeff
Ad Muncher Developer
 
Posts: 5466
Joined: Thu Mar 10, 2005 5:16 am
Location: California, United States

Postby J03 » Fri Oct 21, 2005 4:41 am

Someone on the broadbandreports.com forum created a javascript that disables the mouseovers.

Code: Select all
javascript:removeTooltip('td'); function removeTooltip(x){var y=document.getElementsByTagName(x); for(i=0; i<=y.length-1; i++){ y[i].title=''; if(x=='img') y[i].alt=''; } }


In order to use this, it must be saved as a bookmark and clicked everytime I want to disable the mouseovers. Can it be implemented within AdMuncher?

It also works with cdfreaks.com
J03
 

Postby Guest » Sun Dec 11, 2005 3:45 pm

Theses Tooltips only appear with Microsoft Internet Explorer. I tested the sites with Opera and no tooltips appeared.
Guest
 

Replace Text = awesomeness

Postby username » Sun Dec 11, 2005 9:09 pm

J03 wrote:javascript

You should be able to use a simple "replace text" entry to get rid of the behavior

Code: Select all
broadbandreports:
Match: <a title="*.." href="/forum/remark**"
Replace: <A HREF="/forum/remark**"

cdfreaks
Match: <td class="alt1active" id="*>
Replace: <td class="alt1Active">
username
Addict
 
Posts: 41
Joined: Tue Jun 21, 2005 3:25 pm

Re:

Postby ZombyWoof » Tue Jun 26, 2012 8:46 pm

J03 wrote:Someone on the broadbandreports.com forum created a javascript that disables the mouseovers.

Code: Select all
javascript:removeTooltip('td'); function removeTooltip(x){var y=document.getElementsByTagName(x); for(i=0; i<=y.length-1; i++){ y[i].title=''; if(x=='img') y[i].alt=''; } }


In order to use this, it must be saved as a bookmark and clicked everytime I want to disable the mouseovers. Can it be implemented within AdMuncher?

It also works with cdfreaks.com


Resurrecting this really old thread.

I find a lot of forums using "topic previews" (aka mouseovers).

Can this javascript be implemented (or something similar) to prevent mouseovers/tooltips / topic previews? Currently it can be used as a bookmark using IE9 (FX has it built-in to remove tooltips). I've tried to implemented it as a filter (add javascript to all pages), but AdMuncher gave me an error when I tried to log in here.

Anyway to stop the mouseover/tooltips / topic previews.?
ZombyWoof
Active Member
 
Posts: 23
Joined: Tue Jan 27, 2009 5:19 pm

Re: Mouseovers

Postby Jeff » Wed Jun 27, 2012 2:24 am

filter one.
function removeTooltip(x){var y=document.getElementsByTagName(x);for(i=0;i<=y.length-1;i++){y[i].title='';if(x=='img')y[i].alt='';}};

filter two.
__amscript_trapevent("DOMContentLoaded","removeTooltip('td')");

this will apply to all sites.

if you want it to be site specific then wrap the second filter in a per site check like so:

if(__amscript_cd('.website.')){__amscript_trapevent("DOMContentLoaded","removeTooltip('td')");};

you can make as many of these filters as you need.

you can change the tag to 'img' as well instead of 'td'.
That's not an ad blocker... THIS is an ad blocker.
---
No bovines were harmed in the making of this program.
---
My first popup stopper blocked too much.
My second popup stopper didn't block enough.
Ad Muncher was juuuuust right.
User avatar
Jeff
Ad Muncher Developer
 
Posts: 5466
Joined: Thu Mar 10, 2005 5:16 am
Location: California, United States

Re: Mouseovers

Postby ZombyWoof » Wed Jun 27, 2012 8:52 pm

BBeeaauuttiiffuull!!

My sanity is saved (what little I have)!

I will not miss "topic previews".

Thank you, Jeff!

Perhaps this might be included in Ad Muncher under Options / Filtering?
ZombyWoof
Active Member
 
Posts: 23
Joined: Tue Jan 27, 2009 5:19 pm

Re: Mouseovers

Postby Jeff » Wed Jun 27, 2012 10:42 pm

we've designed the new interface for 5.x to allow us to add an infinite number of options like this that the user can enable or disable.

so yes, eventually 1000's of similar filters will be included but disabled by default.
That's not an ad blocker... THIS is an ad blocker.
---
No bovines were harmed in the making of this program.
---
My first popup stopper blocked too much.
My second popup stopper didn't block enough.
Ad Muncher was juuuuust right.
User avatar
Jeff
Ad Muncher Developer
 
Posts: 5466
Joined: Thu Mar 10, 2005 5:16 am
Location: California, United States

Re: Mouseovers

Postby arran777 » Mon Jul 16, 2012 3:45 am

Jeff wrote:filter one.
function removeTooltip(x){var y=document.getElementsByTagName(x);for(i=0;i<=y.length-1;i++){y[i].title='';if(x=='img')y[i].alt='';}};

filter two.
__amscript_trapevent("DOMContentLoaded","removeTooltip('td')");

this will apply to all sites.
.


How do I add these filters to admuncher.??
what filter category do I select?
arran777
Active Member
 
Posts: 15
Joined: Wed Feb 20, 2008 12:56 am

Re: Mouseovers

Postby Jeff » Mon Jul 16, 2012 5:12 am

"add javascript to all pages"
That's not an ad blocker... THIS is an ad blocker.
---
No bovines were harmed in the making of this program.
---
My first popup stopper blocked too much.
My second popup stopper didn't block enough.
Ad Muncher was juuuuust right.
User avatar
Jeff
Ad Muncher Developer
 
Posts: 5466
Joined: Thu Mar 10, 2005 5:16 am
Location: California, United States


Return to Default Filters

Who is online

Users browsing this forum: No registered users and 0 guests

cron