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
      $(this).after( "<div class='box'>New box</div>" );
18
    });
19
  });
20
</script>
21
<button>Create a box</button>