I have some elements as below:
<div id="shareswrapper">
<div id="41">
some content blah blah blah...
</div>
</div>
I need to add lets say the below div to shareswrapper:
<div id="1751">
Some new content here!!!!
</div>
The output would as below:
<div id="shareswrapper">
<div id="1751">
Some new content here!!!!
</div>
<div id="41">
some content blah blah blah...
</div>
</div>
I used first child but gain no success. .before() method wont work for me because I don’t know which divs I have inside the shareswrapper.
Any suggestion?
Use prepend..