Hi
I want all my links - except those in the accordion headers - to display a loading.gif file.
It works, but unfortunately for the accordion header links as well. What should I do to exclude them?
This css also works, so I should be referencing the correct class:
Thanx
I want all my links - except those in the accordion headers - to display a loading.gif file.
$('a:not(.ui-accordion-header a)').click(function(){ $('#dvLoading').fadeIn(800); });
It works, but unfortunately for the accordion header links as well. What should I do to exclude them?
This css also works, so I should be referencing the correct class:
.ui-accordion .ui-accordion-header a { color: gold;} /* Accordion panel links */
Thanx