Guest User

Untitled

a guest
Feb 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $('.toggle_description').click(function () {
  2. description = $(this).prev();
  3. description.toggle();
  4. if (description.css('display') == 'none') {
  5. $(this).html('نمایش');
  6. $(this).removeClass('btn-primary').addClass('btn-success');
  7. } else {
  8. $(this).html('پنهان');
  9. $(this).removeClass('btn-success').addClass('btn-primary');
  10. // $(this).removeClass('btn-primary').addClass('btn-success');
  11. }
  12. });
Add Comment
Please, Sign In to add comment