I have Div that it contains some other elements like <p>,<ul>,… How I can Add a Div as first child od my main div?
consider this tags:
<div id="MainDiv">
<p>....
<ul>...
<span>....
</div>
I want it become:
<div id="MainDiv">
<div id="newDiv"></div>
<p>....
<ul>...
<span>....
</div>
1 Answer