> Does anyone see a problem with what I have that
> keeps the rounded corners from working?

You missed the important code on the demo page:
 
<script type="text/javascript">
  // The code tags have the actual code, which is applied to the div
  $(document).ready(function(){
    $(".adorned").each(function(){
        eval($("code", this).text());
    });
  });
</script>

For your own pages, you usually wouldn't have the code inside the div, so
you'd use something like this:

  $(document).ready(function(){
    $(".demo").corner();
  });


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

Reply via email to