I know that you can chain functions on an $( ) object with using dot notation e.g.
$( ).delay().fadeIn().delay().fadeOut()
, etc.
However this also works,
$( ).delay()
$( ).fadeIn()
$( ).delay()
$( ).fadeOut()
My intuition tells me that all methods should be independent, however they actually are sequential. I was curious if there was like a queue of functions inside the JQuery object that allowed this. Thanks,