We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
generally works incorrectly in IE 7 in many cases when rounded buttons inside jquery UI dialog for example:
$("button.btn").corner("keep 3px"); var testDialog= $("#testDialog"); testDialog.dialog({ autoOpen: true, draggable: true, resizable: false, /*dialogClass: 'commonConfirmDialog',*/ height:100, width: 180, position: ['center', 'center'], minWidth:180, minHeight:100 }); }); function showDlg_Click() { $("#testDialog").dialog("open"); } function btnOk_Click() { $("#testDialog").dialog("close"); } </script> </head> <body> <button class="btn" onclick="showDlg_Click()">Show dialog</button> <div id="testDialog" title="Test dialog"> Some text<br/> <button class="btn" onclick="btnOk_Click()">Press OK</button> </div> <body>
The text was updated successfully, but these errors were encountered:
Works nice in IE 6 / 7 / 8 with jQuery UI Tabs 1.8.5.
Sorry, something went wrong.
No branches or pull requests
generally works incorrectly in IE 7 in many cases when rounded buttons inside jquery UI dialog
<script type="text/javascript" src="scripts/jquery-1.4.2.js"></script> <script type="text/javascript" src="scripts/jquery.corner.js"></script> <script type="text/javascript" src="scripts/jquery-ui.js"></script> <style type="text/css"> button.btn { /\* padding: 0 7px;*/ height: 20px; line-height: 20px; color: #fff; margin: 0; font-weight: bold; background: url(images/brown_btn_bg.png) top left repeat-x; border: 0 none; vertical-align: middle; cursor: pointer; } </style> <script type = "text/javascript"> $(document).ready(function() {for example:
The text was updated successfully, but these errors were encountered: