I am using ACE code editor. I am trying to add a feature of drag and drop of code blocks inside the editor. I have a div like this :
<div id=”draggable2″ draggable=true>
If
</div>
And I am using this event ...
Please briefly explain why you feel this question should be reported .
Suppose I have a div like:
<div class="parent">
<p class="child">Hello1</p>
<p class="child">Hello2</p>
<p class="child">Hello3</p>
</div>
Using JavaScript, how can I select the second child of the parent?
...
Please briefly explain why you feel this question should be reported .