I'm using Pace.js (http://github.hubspot.com/pace/) for a basic loader.
It works great with no issues so far. However, what I would like to do, is append the Pace.js HTML to be inside an element of my choice.
The generated HTML looks like:
<div class="pace pace-inactive">
<div class="pace-progress" data-progress-text="100%" data-progress="99" style="transform: translate3d(100%, 0px, 0px);">
<div class="pace-progress-inner"></div>
</div>
<div class="pace-activity"></div>
</div>
By default, Pace.js appends itself to be just after the opening <body>
tag. Is there any way to hook into where this generated HTML goes?