Guest User

Untitled

a guest
Oct 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1.  
  2. $(document).ready(function() {
  3. var myBoolean=new Boolean();
  4. myBoolean = true;
  5.  
  6. $('.lt').click(function() {
  7. if(myBoolean == true){
  8. $('#dropdown').hide('slow', function() {
  9. //alert('Animation complete.');
  10. myBoolean = false;
  11.  
  12. $('#openclose').css("background-image", "url(images/arrow-closed.png)");
  13. });
  14. }
  15. else if(myBoolean == false){
  16. $('#dropdown').show('slow', function() {
  17. //alert('Animation complete.');
  18. myBoolean = true;
  19. $('#openclose').css("background-image", "url(images/arrow-open.png)");
  20. });
  21. }
  22. });
  23.  
  24. });
Add Comment
Please, Sign In to add comment