Hello, 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 sofar counting the number off div's already on the page with $("#foo > div").size() 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 too get the result
If anybody has already had experience with this, please
thanks in adv, Richard