Home › Forums › CSS › CSS Selector wildcard for WordPress widget › Re: CSS Selector wildcard for WordPress widget
September 28, 2011 at 2:36 am
#88135
Member
I searched through your site and couldn’t find the CSS but found the jQuery and an error i made with it, see the fixed jQuery code below. If you have or are using a cache like W3 cache make sure to clear it as the changes won’t appear until then.
jQuery for IE
jQuery(function($) {
if ($.browser.msie && $.browser.version < '9.0') {
$('div[id^=events-list-widget]').each(function() {
$(this).addClass('events-widget-ie');
});
}
});