I want to load the contents of the gallery element to the stage element by clicking on the gallery element itself. This is noob stuff I'm sure, but I have yet to find an explanation for this. Why doesn't this work?
Also, I am using jquery UI to create a drag and drop interface --> the element inside the #gallery is draggable, and #gallery is droppable
$(document).ready(function () {
var $galcon = $('#gallery').html();
$("#gallery").on('click'function () {
$('#stage').append($galcon);
});
});