I need a solution for round corners using javascript with or without jQuery in IE8 standards mode.
+3
A:
I've had good luck with dd_roundies. It doesn't use jQuery and it's a pretty small script.
Example usage from the site:
<script src="DD_roundies.js"></script>
<script>
/* EXAMPLES */
/* IE only */
DD_roundies.addRule('.roundify', '10px');
/* varying radii, IE only */
DD_roundies.addRule('.something_else', '10px 4px');
/* all browsers */
DD_roundies.addRule('.yet_another', '5px', true);
</script>
Johnny G
2009-06-12 15:29:05
I went to DD_roundies example page. All examples were messed up in IE8 standard mode. I need something that will work in standard mode.
2009-06-12 15:44:29
+3
A:
jQuery corner() seems to work correctly in IE8 standards mode. Seems to be the go-to corner plugin for jQuery, too.
ajm
2009-06-12 16:36:22
dd_roundies offers more reliable rendering in my experience. jquery.corner's rendering can be weird if you dont have a solid background and even if you specify the cc/sc#.
meder
2010-05-17 16:47:30
A:
You can have a look at FlexiPanels CSS - a Dreamweaver extension that makes CSS rounded corners without coding. Works on IE8 as well.
Extend Studio
2010-05-17 12:24:16