jQuery UI Accordion "jumping" on load ?
Hopefully someone here could help me with this, though it may not be a jQuery problem but instead a CSS problem. I just finished a portfolio website for one of my college graphic design courses, and I'm using the accordion from jQuery UI for part of my navigation.
Click here to see the website. When you click on "work," you can see the accordion functioning, but as soon as is it loads it "jumps" into place instead of unfolding smoothly as it should. Does anyone know what might be the cause?
The jQuery code is simple enough:
$(function () {
$(".accordion").accordion({
active: false,
collapsible: true
});
});
Many thanks for any responses!