x
 
1
<!doctype html>
2
<title>Example</title>
3
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
4
<script>
5
  $( function() {
6
    $( "button" ).click( function() {
7
      $( "p" ).text( "Hello" );
8
    });
9
  });
10
</script>
11
12
<button>Click me!</button>
13
<p></p>