I'm using a package called Timeline
https://github.com/VeriteCo/TimelineJS
It works by having a placeholder such as
<div id="my-timeline"></div>
And then ultimately making a jQuery call to manipulate the div. Visually I'm seeing the timeline appear on the screen and then disappearing almost straight away. A similar effect occurs with the following simple example:
<div id="my-temp"></div>
combined with
$(document).ready(function() {
$('#my-temp').html('HELLO');
});
What's the correct way to perform this type of manipulation without having the resultant HTML disappear?