-
as seen on Stack Overflow
- Search for 'Stack Overflow'
*Nevermind... figured it out... *
did it like this:
$("#accordion").accordion({
header:'h3',
active: '#section1',
autoheight: false,
clearstyle: true,
}).bind("change.ui-accordion", function(event,ui) {
$("#text1").focus();
});
I've…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to use JQuery UI Accordion as a menu, but I can't figure out how to prevent some tabs from expanding.
My JS:
$("#sidebar").accordion({
collapsible: true,
changestart: function(event, ui) {
switch ($(ui.newHeader).attr("id")) {
case "sidebar_grades":
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to open an accordion div from an external link. I see the "navigation: true" option but I'm not sure how to implement it. Do you give each div an id and call the link like this? http://domain.com/link#anchorid
I'm new to jQuery so bear with me. Here is the code I'm using if it helps.
<script…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have to make something like an accordion, but I want it to fade while I click on a "li" of the menu.
http://scripts.den-style.net/
Click on "Prodotti" and then on "Chi Siamo" ;D
Can you help me?
How can I fade each "pannel"?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I would like to add an anchor that would be styled to look like the other items(with some minor changes), but instead of animating, would just go to the set link.
is there a way of doing this, or should I just switch to this accordion menu and redo the css to include the images?
>>> More