How to use jquery code in Internet Explorer?

I am putting some jquery on my website that makes the text move to the right when the page changes. It works in Firefox and Safari, but it doesn't work in Internet Explorer. My url to my site: http://katieduck.com/Courses/Improvisation%20Winter%20Course%20Dartington.html Here's the code that doesn't work:

$(document).ready(function() {
    $('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
    $('#featuredvid > ul').tabs();
});

      

Perhaps you can find out what is wrong.


Hi Do you know what my css problem is? Where is the jquery easing I cannot find it on this page: http://katieduck.com/Courses/Improvisation%20Winter%20Course%20Dartington.html

Thanks,

ILARIA

+2


a source to share


1 answer


You have a CSS problem, not a jQuery problem. jQuery probably affects the correct CSS values, however IE does indeed render CSS differently from other browsers, so this is probably the problem you are having.



Also, it doesn't display correctly in FF 3.6 anyway, so I guess you have a few issues at the moment

+2


a source







All Articles