[Solved] FadeToggle fade duration [closed]

$(‘yourSelector’).fadeToggle(yourDuration,function() { functionstoExecute}); From jQuery Doc .fadeToggle( [duration ] [, easing ] [, complete ] ) duration (default: 400) Type: Number or String A string or number determining how long the animation will run. 2 solved FadeToggle fade duration [closed]

[Solved] Javascript script stopped working and i can’t figure out why? [closed]

Just in order to help you… Add jQuery to used Frameworks & Extensions on the left, and fix multiple syntax errors. I strongly recommend you to use proper code formatting and debugging tool (e.g. Chrome Development Tools or Firebug). DEMO: jsfiddle.net/qA8Ur/1/ 2 solved Javascript script stopped working and i can’t figure out why? [closed]

[Solved] Fade out/in sperate divs with button click [closed]

Your question is very vague, but hopefully this example will get you started in the right direction: http://jsfiddle.net/3mJ3z/ Basically, there are 3 menu items, and 3 corresponding content items. When you click the menu item, all the other content items disappears and the corresponding content item fades in. The HTML: <div class=”item-1 content-item”> I am … Read more