Suppose I have the following DIV
<div id="myDiv" style="display:none" title=""></div>
I have an ajax call that append HTML markup to this div using
$("#myDiv").html('').html(response);
I would like to append hidden content to the main div before the response content so the result would be
<div id="myDiv" style="display:none" title="">
//my hidden content
//here there will be the response HTML markup
</div>
How can I do it using jQuery code?
myDivbeing added. I want to add another child node ofmyDivbefore the one that