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");};
});
Add some form of browser checking code that wraps your code in an if statement and only selectively runs it.
Psuedo code:
Or you could possibly wrap it in side of a
try/catchblock