x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
5
<script>
6
  $( function() {
7
    $( "button" ).click( function() {
8
      $( "img" ).attr( {
9
        "src" : "/pix/samples/11m.jpg",
10
        "alt" : "Photo of the Mekong River from Laos",
11
        "title" : "The mighty Mekong"
12
      } );
13
    });
14
  });
15
</script>
16
17
<p><button>Change Image</button></p>
18
<img src="/pix/samples/8m.jpg" alt="Photo of bird">