Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My objective is to create a generic function for animation which would require to pass in parameters, assuming the function can be used for animating any elements.

I started with simple animation that wouldn't require passing parameters and it seems to work fine. Here is the code and link

<div id="outer" class="box">
    <div id="inner" class="box"></div>
</div>
<input type="button" id="animate" value="Animate"/>​     
​$("#inner").animate({left: '+=300', top: '+=300'}, 1000);​

BUT its not working when I try to write a genric function... code

$("#animate").Click(function(){
    diagonalAnimation("inner");
});

function diagonalAnimation(e){
$('"#'+e+'"').animate({left: '+=300', top: '+=300'}, 1000);
}
share|improve this question

1 Answer

up vote 1 down vote accepted

jsFiddle( http://jsfiddle.net/5v86F/81/ )

<div id="outer" class="box">
    <div id="inner" class="box"></div>
</div>

<input type="button" id="animate" value="Animate" onclick="animate('inner')"/>

<script>
    function animate( item )
    {
         $( "#" + item ).animate({left: '+=300', top: '+=300'}, 1000);
    }
</script>
share|improve this answer
its not a generic function. By doing as you said, I will be able to animate only element with id = "inner" – Priya Apr 23 '12 at 16:56
it is generic, just set the item you want to animate as the value of the button... <input type="button" id="animate" value="generic item to anmiate" /> – Jonathan Payne Apr 23 '12 at 16:59
@ Payne -- Thanks, but what if I want to use animate function on different elements. How would I reuse that function? – Priya Apr 23 '12 at 17:01
My objective is to pass the element to animate as an argument of the animation function – Priya Apr 23 '12 at 17:04
@Priya i'm not entirely sure what you're asking.. i edited the above code, there are now 2 buttons that control and animate 2 different boxes.. – Jonathan Payne Apr 23 '12 at 17:12
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.