Fuxi
Fuxi

Reputation: 7599

jQuery: change icon to greyscale

I made a button widget in jQuery which displays an icon.

Now when I set the button do disabled, I'd like to have it greyed-out.

Is there a jQuery function to do this?

Thanks

Upvotes: 0

Views: 413

Answers (2)

Chris Fulstow
Chris Fulstow

Reputation: 41892

If you don't want to create another version of the image then you can try using CSS to reduce the opacity of the button so it appears faded, or overlay a semi-transparent grey DIV to give a greyed-out effect.

Upvotes: 3

Chris
Chris

Reputation: 28064

http://www.alistapart.com/articles/sprites2/

Sprites are your answer.

Upvotes: 2

Related Questions