You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ok, but how about using jQuery's not() function instead (http://api.jquery.com/not/). I have not tested what is below but I believe something like this should work, and only not round the corners on input elements and textareas in IE.
// PUT THIS CODE BETWEEN JAVASCRIPT TAGS
var isIE/@cc_on=1@/;
if(isIE){
//Do not select input elements or textareas!
$("#mydiv").not("input, textarea").corner("bottom","3px");
}else
{
// CORNER PLUGIN CODES
$("#mydiv").corner("bottom","3px");
}
People who had problems with ie compatibility. Code below deactivate the script only for ie browser.
Fırst it checks the browser whether if ie or not. if your browser is ie i just put a comment like Do Nothing, if not just write your plugin codes.
// PUT THIS CODE BETWEEN JAVASCRIPT TAGS
var isIE/@cc_on=1@/;
if(isIE){
//Do Nothing !
}else
{
// CORNER PLUGIN CODES
$("#mydiv").corner("bottom","3px");
}
The text was updated successfully, but these errors were encountered: