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
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
Hmm doesn't work here either - I am running Chrome 3 beta tho. Are you running the beta as well?
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!
This way worked for me:
$('#image-container').attr("style", "width:400px;display:block");