views:

488

answers:

4

Hey

Is it me or do none of the (css) class effects of jQuery UI work in Google Chrome. I thought it might be my code, but even on the example site they are not working in my chrome. Other examples work.

http://jqueryui.com/demos/addClass/

Thanks

+1  A: 

Hmm doesn't work here either - I am running Chrome 3 beta tho. Are you running the beta as well?

Darko Z
nope, 2.0.172.something
zenna
+2  A: 

This was confirmed as a bug with webkit based browsers

zenna
A: 

I pulled few of my hairs already...before landing on this page. Try wrapping your webkit specific code in $(window).load()

$(window).load( function() {
    $('#image-container').css('width', 400);

});

This worked for me!

detj
A: 

This way worked for me:

$('#image-container').attr("style", "width:400px;display:block");

Makiyama