Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>demo by roXon</title>
</head>
<body>
  
  
  <img class="mute_btn" src="test.png" />
  <img class="mute_btn" src="test.png" />
  <img class="mute_btn" src="test-over.png" />
  
  
</body>
</html>
 
img{
  background:#cf5;
  height:50px;
  width:50px;
}
 
$('.mute_btn').click(function () {
      var src = this.src;
      var isClicked = src.indexOf('-over') > -1 ;  
      this.src = isClicked ?
            src.replace(/(.*)-over\.(png|gif|jpg|jpeg)$/, "$1.$2") :
            src.replace(/(.*)\.(png|gif|jpg|jpeg)$/, "$1-over.$2") ;
  
  
      alert( this.src );
}); 
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers