Hello,
I have an Div element with absolute position, and the top is set to 80px,
I want, is to when I click on that Div his postiton top, will change to 180px, and if i click on it again it will get back on his first 80px, this is my code:
- $(document).ready(function(){
- $('#kontakt').click(function(){
- $(this).stop().animate({top : "178px"}, 300);
- });
- });
If someone can help, I will be thanksfull