I'm using the curvycorners jQuery plugin (http://www.curvycorners.net/instructions/) to force IE to render rounded corners on divs.
It works really well, apart from one thing: I have a validation error-message that pops up inside the div, using jQuery's "show" method.
Curvycorners adds an extra div that is absolute positioned and has...
Absolute newbie question, any help is highly appreciated :)
I am using curvycorners (http://www.curvycorners.net/) in combination with the jQuery validation plugin (http://bassistance.de/jquery-plugins/jquery-plugin-validation/), and I'm having problems getting the div to redraw the rounded corners when I do like this:
$("input[type='s...
Which fragment of code bellow can not work in MSIE?
$(document).ready(function() {
var minId;
var fadeTime = '25';
$.ajax({
url: 'JsonFileWrite.php',
type: "POST",
data: "idRequest=true",
success: function(data) {
mi...
Here is my page markup:
<div class="grayBox clearfix">
<div class="mainFormInnerColumn">
<label>Sort By:</label>
<asp:DropDownList ID="ddl_TestResultsSortBy" runat="server" ClientIDMode="Static">
<asp:ListItem>Date Newest</asp:ListItem>
...
IE9, Firefox 4, Opera 10.5, Safari 5, Chrome 4, WebKit 532.5 supports CSS3 border-radius.
Latest jquerycurvycorners 2.1.1 uses -moz-border-radius and not border-radius to create corners to old browsers. How to replace it to border-radius, border-top-left-radius, border-top-right-radius, border-bottom-right-radius, border-bottom-left-rad...