> Dropped jQuery 1.0 (uncompressed) into a work in progress and all my
> rounded corners disappeared. Anyone else using the rounded corners
> plugin that can verify or potentially offer a fix?

Starting with this code:
http://methvin.com/jquery/jq-corner-demo.html

The original code works fine for me using jQuery SVN 234 as long as I change
the way the startup code is called. For some reason with  SVN 234 this is
never called:

$(document).bind("load", function(){
   alert("I am never alerted");
});

But this works fine:

$(document).ready(function(){
   alert("I will appear");
});

But otherwise it works fine.

Sooo...for those of you still having trouble, could you post a simple
example of how you are using the plugin and some more details about which
version of jQuery you are using?


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to