Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function () {
  3. $(".site-navigation").click(function() {
  4. if($(this).data("clicked")) {
  5. $(this).data("clicked", false);
  6. $(this).children("ul").fadeOut('300');
  7. $(this).children("ul").slideUp("slow");
  8. } else {
  9. $(this).data("clicked", true);
  10. $(this).children("ul").fadeIn('300');
  11. $(this).children("ul").slideDown("slow");
  12. }
  13. });
  14. });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement