Jquery Slide Toggle


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $("#contact-slide").hide();
  2. $('#doBlind').click(function() {
  3. $('#contact-slide').slideToggle(500);
  4. return false;
  5. });

Report this snippet


Comments


You need to login to view comments.