<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(function){
<!--
Jquery Live Metodu
Jquery Append Metodu
Jquery İndex Metodu
-->
$("button").on('click',function(){
$(this).after('<button>Buraya da Tıkla.</button>')
});
});
</script>
</head>
<body>
<button>Buraya Tıkla</button>
</body>
</html>