I'm currently working on developing a form building tool and I've encountered an issue. Initially, everything was functioning correctly - I could drag my first icon and drop it onto the main form body without any problems. However, when I tried to make the dropped panel droppable itself, I ran into issues. Dropping something onto the panel did not trigger any action. Interestingly, if I manually hard-code the div into the panel, it works as expected. This discrepancy has been causing me a lot of trouble in trying to debug.
Below is the code snippet in question:
<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.16.custom.min.js"></script>
<style type="text/css">
#toolbox
{
width: 100%;
...
}
</style>
</head>
<body>
...
</body>
</html>