[jQuery] Jquery slideToggle shows jerk in animation
hi all,
<script>
$(document).ready
(
function()
{
$('div#dflights').hide();
$('a#aflights').click(function(){$
('div#dflights').slideToggle("slow");return false;});
}
);
</script>
<div id="dflights" style="padding:10px">
Provides directions, interactive maps, and satellite/aerial imagery of
the United States. Can also search by keyword such as type of
business.
</div>
the problrm is the animation shows some jerk when click to close the
div
also when i open a div i want all other div tags to be in closed mode
any idea
b u d d h a