Hi,
With the dropping on toggle (Multiple functions) I'm trying to figure out how to rewrite this:
- var $j = jQuery.noConflict();
- $j(function(){
- $j('#nav a[href*="stacks"]').toggle (function() {
- $j('#extraContainer3').slideDown('1600')},
- function() {
- $j('#extraContainer3').slideUp('1000')});
- });
I tried this:
- var $j = jQuery.noConflict();
- $j(function(){
- $j('#nav a[href*="stacks"]').click (function() {
- $j('#extraContainer3').slideToggle('1600')});
- });
What am I doing wrong?
Thanks, Bill