I have a jQuery UI code that allows an existing box to be draggable. When I append an additional box, however, those boxes are not draggable. Here's a JSFiddle: http://jsfiddle.net/MJKhq/4/ (the click me button adds another box to the document, but that box is not draggable like the first). Here's also a code sample because it required me to:
$(function()
{
$( "#draggable" ).draggable();
});
function makenew()
{
$("body").append('<div id="draggable" class="ui-widget-content"> <p>Drag me around</p></div>');
}