How can i use border-radius on all versions of IE?
.myclass {
border-style: solid;
border-width: 2px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
}
Is it possible with jquery?
How can i use border-radius on all versions of IE?
.myclass {
border-style: solid;
border-width: 2px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
}
Is it possible with jquery?
Since border radius (and other CSS3 properties) is not supported in older browsers, you can use CSS3 Pie for example. Keep in mind that you are referring to styling not to scriping. So asking if it can be done with jQuery is a bit weird.
You have try with the plugin dd_roundies(download link) for the border radius on IE. Hopes It may helps you
Considering your code you were already in the right place.
You could find the answer to your problem a bit further down.