Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In IE, how do I remove a filter?

I have a class

.tab{filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5ffff', endColorstr='#e8f2f8');}

and when one of the tabs is selected I want to remove the filter:

.tab.selectedtab{/*what do I put here to remove the filter?*/} 
like image 295
Kyle Avatar asked Oct 27 '10 19:10

Kyle


People also ask

How do I turn off content filter in Internet Explorer?

Open Internet Explorer, select the Tools button , and then select Internet options. On the Privacy tab, under Pop-up Blocker, select or clear the Turn on Pop-up Blocker check box, and then select OK.

What is Phishing Filter in Internet Explorer?

More on Internet Explorer Phishing Filters With the SmartScreen Filter, every download and website is checked against an ever-growing list of phishing and malware sites. If the filter finds something suspicious, it prompts you to exit the page or continue through to the unsafe website.

How do I delete saved info on Internet Explorer?

In Internet Explorer, select the Tools button, point to Safety, and then select Delete browsing history. Choose the types of data or files you want to remove from your PC, and then select Delete.

Is microsoft edge Internet Explorer?

The Edge icon, a blue letter "e," is similar to the Internet Explorer icon, but they are separate applications.


2 Answers

The answer is to set the enabled property of the filter like so:

filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);

like image 177
Kyle Avatar answered Sep 24 '22 17:09

Kyle


I've only tried this in IE8, but it seems to do the trick:

filter: none;

like image 36
metavida Avatar answered Sep 25 '22 17:09

metavida