I manage to get an example of a drag and drop in javascript working. ( )
I'm not trying to apply this technique to my project. Though I'm getting stumped on my HTML hierarchy.
Here's my HTML code
So pretty much, following the example shown in I'm trying to get down to my <ul>. How would I go by doing that?
I've tried document.getElementByTagName("ul") but no gold. I am able to get to that lone <div> before my <ul> fine...but for this project, it's requiring me to dig a bit deeper.
Any help apprecieated. Thanks
I'm not trying to apply this technique to my project. Though I'm getting stumped on my HTML hierarchy.
Here's my HTML code
Code:
<div id="bottom_content">
<div id="left_container">
<div>
[b]<ul class="handle">[/b]
<li class="box_name">Photo Pool</li>
</ul>
<p>Text</p>
</div>
</div>
<div id="left_container">
<div>
<ul class="handle">
<li class="box_name">Photo Pool</li>
</ul>
<p>Text</p>
</div>
</div>
I've tried document.getElementByTagName("ul") but no gold. I am able to get to that lone <div> before my <ul> fine...but for this project, it's requiring me to dig a bit deeper.
Any help apprecieated. Thanks