I have a very simple slide toggle function as below.
$(".quickLinksLink").click(function () {
$(".quickLInksList").slideToggle(100);
});
It works but it slides the quickLInksList div down and then immediately back up. Sort of like peeka boo effect. this happen everywhere where a slideToggle function is used.
Any help will be appreciated.