Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
  
 <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(document).ready( function(){
            $('#button').click( function(){
                var $container = $('#container');
                 var string=$("#container img");
    string.attr('src', 'foo');
            });
        });
    </script>
</head>
<body>
     <div id='container'><img src='pointIcon.png'/></div>
        <button id='button'>Go!</button>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers