Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [HELP] Simple JS onClick Toggle Re: [HELP] Simple JS onClick Toggle

#55464
jamygolden
Member

I’m really not sure what’s going on with your javascript:
This should cause it to work properly:

$("#main-content").delegate("#siddetgl").click(function(){
$("#navigation-block").slideToggle("slow");
});