jQuery Swap Image on Click and if/else

Posted by jrutter on Stack Overflow See other posts from Stack Overflow or by jrutter
Published on 2010-06-02T13:18:08Z Indexed on 2010/06/02 13:23 UTC
Read the original article Hit count: 182

Filed under:
|

Im stuck, Im setting a variable when someone clicks, then testing with if to see if the variable exists and doing something else. Its a simple script which Im probably overthinking, would love someone's thoughts.

  $('.view-alternatives-btn').live('click', function() {



//$("#nc-alternate-wines").scrollTo();
   //$('.nc-remove').toggle();
   var showBtn = null;
   if (showBtn == null) {
   $('.view-alternatives-btn img').attr("src","../images/wsj_hide_alternatives_btn.gif");
   $('#nc-alternate-wines').show();
   showBtn = 1;
   console.log(showBtn);
   }
   else if (showBtn == 1) {
   $('.view-alternatives-btn img').attr("src","../images/wsj_view_alternatives_btn.gif");
   $('#nc-alternate-wines').hide();
   console.log("this " + showBtn);
   }
   return false; 
  });

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery