I've adapted this jquery accordion but need certain tabs shaded and not clickable. When we click BACKWARDS in the process I need the tab that's visible on load to slide up. I'm using jquery here that clicking ANYWHERE outside of this <div> will close this box.
This works fine but notice after you've clicked the boxes above, now go BACK to the original tab...it won't stay open!
I'm thinking a 'simple' solution is to script it so if you click another TAB to close the window as opposed to anywhere on screen but I can't get it to work!
Hi, with display: inline you change the normal flow of the DIVs, to show it properly try to set it display:block; Anyway on page load they will be all hidden, since you call $("div.accordionContent").hide();, you can try to add a second class show and add a second line $("div.accordionContent.show").show();
Bookmarks