Advertisement
alpa_s

Untitled

May 25th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. function showonlyone(thechosenone) {
  2. $('#content-block .item').each(function () {
  3. $(this).removeClass('_active');
  4. });
  5.  
  6. $('.tabs').each(function (index) {
  7. if ($(this).attr("id") === thechosenone) {
  8. $(this).show();
  9. $('#content-block').removeClass().addClass('profile ' + thechosenone);
  10. $('#' + thechosenone).addClass('_active');
  11. }
  12. else {
  13. $(this).hide();
  14. }
  15. });
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement