IE-only Styling for jQuery qTip
Posted
by Kevin C.
on Stack Overflow
See other posts from Stack Overflow
or by Kevin C.
Published on 2010-04-03T02:10:45Z
Indexed on
2010/04/03
2:13 UTC
Read the original article
Hit count: 443
I'm using jquery.qTip on http://comps.gunnjerkens.com/phws/services/
Looks beautiful with the drop shadow and rounded borders in modern browsers...unfortunately the drop shadow is lost on IE. So I want to specify an IE-only rule that makes the border a different color than white. Here's how I currently have it setup:
$(this).qtip({
content: the_content, position: { corner: { target: 'bottomLeft', tooltip: 'topLeft' }, adjust: { screen: true } }, style: { border: { radius: 4, color: '#FFFFFF' }, color: '#7D9240' } }); // qtip() });
I appreciate any help!
© Stack Overflow or respective owner