Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery animate position in percentage

how do I determine the positions in percentages?

    $(document).ready(function(){
      $("#button").toggle(function(){
        $("#slide").animate({top:-100%},1000);
      },function(){
        $("#slide").animate({top:0%},1000);
      });
    });

Please suggest.

like image 930
LGVentura Avatar asked Jun 13 '12 13:06

LGVentura


1 Answers

$(document).ready(function(){
      $("#button").toggle(function(){
        $("#slide").animate({top:'-100%'},1000);
      },function(){
        $("#slide").animate({top:'0%'},1000);
      });
    });

Add quotes. (I used single quotes, but js doesn't care if it is ' or ")

like image 64
11684 Avatar answered Sep 28 '22 18:09

11684