My question is the following:
What would be the best way to insert a div container, and the next one after the last inserted one?
<div class="pane">
<div class="inhoud">
<h3>Sample heading</h3>
<p>Testbericht. </p></div>
<form id="noteform" class="frm">
<input type="image" src="images/kn_verwijder.gif" alt="delete" class="delete" /><br />
<input type="hidden" name="frmnoteid" id="frmnoteid" value=""/>
</form>
</div>
What I know so far:
- Counting the number of divs already on the page with
$("#foo > div").size()and the.insertAfter()method. - Using the selector and the
.load()method to load the html data from a file.
The problem is that I don't know if I can use these methods properly to get the result.
If anybody has already had any experience with these, please help.