In css when you want something to be ie only you can comment it out and assign ie. I have a jquery plugin that breaks in IE I don't want it to run in ie but I want it to run in all other browsers. How can I do this?
this worked!
jQuery(function() {
if(jQuery.browser.msie){}
else
{$('.div').corner("round 20px");};
});