Guest User

Untitled

a guest
Feb 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.42 KB | None | 0 0
  1. $('#stockists').ready(function() {
  2.   $('#' + $('#state-toggle').children(':first').children().attr('id') + '-container').slideDown('fast');
  3. });
  4.  
  5. $('#state-toggle').children().children().click(function() {
  6.   $('#state-toggle').children().children().addClass('inactive');
  7.   $(this).toggleClass('inactive');
  8.   $('#stockists').children().slideUp('fast');
  9.   $('#' + $(this).attr('id') + '-container').slideDown('fast');
  10. });
Add Comment
Please, Sign In to add comment