I am going put external element into inner html using drag & drop. So I assume like this. This is inner html.
<div class="inner_html">
<div class="title">
<h1>This is title</h1>
</div>
<div class="body">
<li>this is element</li>
<a>element</a>
</div>
</div>
Here is external html. <div>This is external element</div>
I am going to drag external element and drop into inner html. So final element can get a lot of results. I think if position were absolute, then it can be done easily using jquery draggable plugin. But I don't want absolute position. just want to put into inner html.
Can anyone help me?