Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
    <div class="container"></div>
    <button>Toggle</button> 
</body>
</html>
 
body { margin: 30px; }
div { 
    width: 24px; 
    height: 24px;
    background: url(http://i817.photobucket.com/albums/zz93/Lucay123/smiley.gif) no-repeat;
}
.switch {
    background-image: url(http://i1124.photobucket.com/albums/l571/Trekker47/Smiley.png);
}
 
$('button').click(function() {
    $('div').toggleClass('switch');
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers