Guest User

Untitled

a guest
Jul 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. var wrapper = jQuery('#edit-profile-interest-other-wrapper');
  2. var checked_status = jQuery('#edit-profile-interest-list-Other').get(0).checked
  3. wrapper.toggle('slow', !checked_status);
  4. if (checked_status == true) {
  5. wrapper.show();
  6. }
  7. else {
  8. wrapper.hide();
  9. }
  10.  
  11.  
  12. var wrapper = jQuery('#edit-profile-interest-other-wrapper');
  13. var checked_status = jQuery('#edit-profile-interest-list-Other').get(0).checked
  14. jQuery('#edit-profile-interest-list-Other').click(function(e) {
  15. wrapper.toggle(checked_status);
  16. });
Add Comment
Please, Sign In to add comment