jQuery and Firebug
- by Jeffrey Karbowski
I am using jQuery's cycle plugin, and found that I can call up the default for "speed" by typing this into Firebug's console:
$.fn.cycle.defaults.speed
1000
I would like to know how to call up the override I have for speed:
$('.xxx').cycle({
speed: 1700
});
If you have the answer, please let me know the steps taken to figure it out so I can understand Firebug better.
Thanks a bunch!