In the code below, with jquery, I'd like remove element (and the child 'li') and after that add some code to the
Could you tell me how do this ?
<iframe id="myIframe">
#document
<html>
<head>
</head>
<body>
<div class="spinner" style="display:none;"></div>
<ul>
<li>
<p contenteditable="false">11111</p>
</li>
<li>
<p contenteditable="true"></p>
</li>
</ul>
</body>
</html>
</iframe>
I have a function for this :
function Delete(iframeName) {
$('#' + iframeName)
}
Thanks,