Guest User

Untitled

a guest
Jul 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <script type="text/javascript" charset="utf-8">
  2. $(document).ready(function(){
  3. $("#news_archive_nav").css("height","38px");
  4.  
  5. $("#more_news a").click(function(){
  6. if ($(this).text = "More") {
  7. $("#news_archive_nav").animate({
  8. height: "100%",
  9. }, 1500 );
  10. $(this).text("Less");
  11. } else {
  12. $("#news_archive_nav").animate({
  13. height: "38px",
  14. }, 1500 );
  15. $(this).text("More");
  16. };
  17. });
  18. });
  19. </script>
Add Comment
Please, Sign In to add comment