can anyone help me to use the jquery transit plugin? Every time i try the code specified in documentation it gives me an error. > A video screencast from Chris will be more helpful..
There are two divs overlapping each other. When i click on top div, it should slide to left by 400px and rotate by 30px.
But it doesn't work. This is shown in firefox error console
can anyone help me to use the jquery transit plugin? Every time i try the code specified in documentation it gives me an error. > A video screencast from Chris will be more helpful..
You are going to have to be more specific.
What problem are you having, what error is being generated, do you have a link to a live site. What are you trying to do?
And seriously, a whole screencast ** just for you**? I don't think so.
There are two divs overlapping each other. When i click on top div, it should slide to left by 400px and rotate by 30px. But it doesn't work. This is shown in firefox error console
$(document).ready(function() { $("#box").click(function(){ $("#box").transition({ x: 400, duration: 2000, rotate: 30 }); }); });