Guest User

Untitled

a guest
May 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. var xgalclick = null;
  4. var xgal = null;
  5.  
  6. xgal = "#UTgallery";
  7. xgalclick = "#UTgalclick";
  8.  
  9. $('#UTgallery').hide();
  10. $('#CloseGal').hide();
  11.  
  12. $('xgalclick').click(function(){
  13. xgal.setAttribute("id", "gallery");
  14. $('#gallery a').lightBox();
  15. $('#gallery').fadeIn("slow");
  16. $('#CloseGal').fadeIn("slow");
  17. });
  18. $('#CloseGal').click(function(){
  19. $('#gallery').fadeOut("slow");
  20. $('#CloseGal').fadeOut("slow");
  21. //reset xgal div tag back to original state
  22. gallery.setAttribute("id", UTgallery);
  23.  
  24. });
  25. });
Add Comment
Please, Sign In to add comment