I need to have rounded corners in buttons (input type submit), but I haven't found any JavaScript library that would do that. Currently I use http://blue-anvil.com/jquerycurvycorners/test.html to round other elements, but I doesn't round input buttons or li-elements. I prefer jQuery plugins, because I use jQuery to all other plugins and components in my app. So is there any way to round buttons in IE ?

link|improve this question
possible duplicate of Method to render rounded corners on form submit buttons – Dave Jarvis Apr 12 at 22:38
feedback

5 Answers

The jQuery Corners plugin will fix buttons for you. It takes buttons, create anchor tags of them, and style them. This way, users without JS will only see the standard squared off button (and it will work perfectly), so it's no big loss...

I've used it myself, and it's easy to use.

link|improve this answer
This link is now dead. – dalbaeb Mar 15 '10 at 20:49
I think this is the same plugin as I linked to back in july: franklincovey.com/msb/public/javascript/jquery-corners-0.3/… – peirix Mar 16 '10 at 9:39
feedback

You could fake it by making a rounded box with a link that submits the form. Of course, this wouldn't work with JavaScript disabled, so you'd have to watch out for that. Also, you could just use a background image that has rounded corners.

link|improve this answer
feedback

why not make a button using css? Essentially a linked graphic? One of the sites I work on we have a method that creates a button a specific format with the supplied text and location.

link|improve this answer
feedback

Try using DD_roundies, its a very efficient js code that can round anything, and supports hover also.

link|improve this answer
Is EOL, not working with IE 8 according to the web site – Gus May 17 at 21:07
feedback

I use the following in my personal website (you can get the link from my profile) and it seems to work well:

link|improve this answer
Only problem is that it doesn't work with latest jQuery version, it requires older version... – JCoder Jul 7 '09 at 6:37
Oh I see. I have not updated jQuery for some time now. – Alan Haggai Alavi Jul 7 '09 at 6:38
feedback

Your Answer

 
or
required, but never shown