JQuery Corners-- What Will They Think Of Next?
I have consistently been impressed by the number and quality of JQuery plugins that abound. Today at work we ran across JQuery Corners. This friggin' awesome plugin allows you to put rounded corners on your divs and it's oh, so easy.

Todd - is your comment a joke? Sorry - can't tell if you are being serious. It sounds like maybe you are saying there is another plugin that is better?
The thing I like the most about jQuery corners is that it will attempt to work with IE. If your browser can't handle the radius css attribute, then it'll fall back to using images or it'll just go back to using squared edges. Of course, I could be getting my jquery corners plugin mixed up. There's at least 2 of them that I'm aware of.
http://www.html.it/articoli/niftycube/index.html
http://www.netzgesta.de/corner/
This one uses canvas and adds rounded corners to images. It's being updated to work with IE8 right now, but until then you can add this to make it work:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
There's a case statement in there for each style that has wicked expressions like:
case 'round': return Math.round(width*(1-Math.cos(Math.asin(i/width))));
For my 30px rounded corners above, JQuery Corners created 30 transparent divs, all 1 px high, stacked on top of each other for both the top and bottom of my main div. It sets a white left and right border of however many pixels wide the corner is at that point. Basically, it appears to "erase" your div one line at a time by overlapping it with these "sliver" divs.
I never would have thought something like this would wok. lol
@James: Thanks for showing me NiftyCube and the "other" corner.js
For years, I've been using NiftyCorners - nice to know there's a jQuery solution too (I feel like saying "of course" since there appears to be a jQuery solution for *everything*).
http://www.insideria.com/2010/04/adding-rounded-co...
I previously generated round corners using scripting as well as sliced images and tables (old school), but have abandoned both techniques in favor of CSS styling. It's much easier to modify on-the-fly and faster loading (because it doesn't add additional resources or require an "onload" function.)
IE6 is officially dead. Too bad some government agency can't spend the effort to put together a Firefox or Google Chrome bundle that they can recommend for distribution. (I know it's more difficult than that... training, plug-ins, etc.)