I have the following HTML:
<h1 id="site-title" class="page-title"> Website Name </h1>
And I want to add the following direclty underneath it, but I can't do it in the HTML so I would need to with javascript/jquery.
<p id="site-tagline" class="site-subtitle">Tagline, Tagline, Tagline</p>
How would I best do this?
I have this but nothing is showing up on the rendered page.
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script> $("<h1>Fashion</h1>").insertAfter("#site-title"); </script>