You can edit / change the code and click run button
x
 
1
2
3
4
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
<script src="../../../ajax/libs/jquery/1-11-3/jquery.min.js"></script>
6
<script>
7
$(document).ready(function(){
8
    $("button").click(function(){
9
        $("<h2>New text").replaceAll("p");
10
    });
11
});
12
</script>
13
<script>var clicky_site_ids = clicky_site_ids || []; clicky_site_ids.push(101319977);</script><script async src="//static.getclicky.com/js"></script>
14
15
<button>Replace all p elements with h1 elements</button><br>
16
<p>I am old text </p>
17
<p>This is old text </p>
18
<p>I am pretty old!!!.</p>
19
20
21