x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
4
<style>
5
.box {
6
  background: orange;
7
  color: white;
8
  width: 150px;
9
  padding: 20px;
10
  margin: 10px;
11
}
12
</style>
13
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
14
<script>
15
  $( function() {
16
    $( "button" ).click( function() {
17
      $( ".box" ).append( "<p>Surprise!</p>" );
18
    });
19
  });
20
</script>
21
<button>Add Content</button>
22
23
<div class="box">
24
  <p>Main content.</p>
25
</div>