Toggle direction bad animation
Hi everybody,
in my sites, about few days, i have a problem with jquery toggle with direction left as option.
The problem is when effect start, it make a flick becoming a bad effect.
This is a simple example code:
JS:
$(document).ready(function(){
$('input.click').click(function() {
$('div.slide').toggle("slide", { direction: "left" }, 150);
});
});
HTML:
<input type="button" class="click" value="CLICK">
<div class="slide" style="width:200px;margin-top:20px;display:none;background:#000000;color:#ffffff;">
CIAO CIAO CIAO CIAO CIAO CIAO
CIAO CIAO CIAO CIAO CIAO CIAO
</div>
Am i wrong something?
Hope someone can see my problem.