I\'m using the jQuery slideToggle function on a site to reveal \'more information\' about something. When I trigger the slide, the content is gradually revealed, but is loc
you can use a structure like this one:
[your toggled info]
and in your css
.details{ position:relative; } .hidden{ display:none; }
i think thats it.
your jquery call must be:
$('.hidden').slideToggle("slow");