The code is missing });javascript at the end of the code.
Uncaught SyntaxError: Unexpected end of input
Correct it and then change $(".boxclose").click()to$(document).on("click", ".boxclose");
This code works for me
<HTML><HEAD>
<style>
.bat_voltage { width: 250px; height: 100px; padding: 0.5em; margin: 10px 10px 10px 0; z-index:1; }
.floatleft { float:left; }
.left_flight { width: 250px; height: 100px; padding: 0.5em; margin: 10px 10px 10px 0; z-index:1; }
.cnt_flight { width: 250px; height: 100px; padding: 0.5em; margin: 10px 10px 10px 0; z-index:1; }
#droppable { width: 50%; height: 400px; padding: 0.5em; margin: 10px; resize:both; border: 2px; overflow:auto; }
#progressbar { width: 200px; height: 50px; margin-top: 20px; }
a.boxclose{ float:right; margin-top:-10px; margin-right:-10px; cursor:pointer; color: #fff; border: 1px solid #AEAEAE; border-radius: 8px; background: #605F61; font-size: 21px; font-weight: bold; display: inline-block; line-height: 0px; padding: 8px 3px; display: block; }
.displaynone { display:none !important; }
.displayblock { display:none !important; }
</style>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$(function () {
if (localStorage.length != 0) {
for (var i = 0; i < localStorage.length; i++) {
var dropClass = localStorage.key(i);
var clonediv = $("." + dropClass.substr(4, dropClass.length - 4)).clone();
var droppable = $("#droppable");
droppable.append(clonediv.draggable({ helper: 'original', revert: 'valid', containment: "#droppable", grid: [30, 30], snap: true }).resizable({ containment: "#droppable" }));
clonediv.find('a').removeClass("displayblock");
console.log(clonediv);
}
}
else { }
$(".bat_voltage").draggable({ revert:true, grid: [30,30] });
$(".left_flight").draggable({ revert:true, grid: [30, 30] });
$(".cnt_flight").draggable({ revert: true, grid: [30, 30] });
$("#droppable").droppable({
drop: function (event, ui) {
var dragged = ui.draggable;
var id = dragged.attr("class").split(' ');
var droppable = $("#droppable");
var find = (droppable.find("." + id[0]));
console.log(find);
if (find.length != 0) { }
else {
ui.helper.css({ 'top': 0, 'left': 0, 'position': 'relative' });
ui.helper.clone().appendTo("#droppable").draggable({ containment: "#droppable", grid: [30, 30], snap: true }).resizable({ containment: "#droppable" });
droppable.find("." + id[0]).find('a').removeClass("displayblock");
localStorage.setItem("drop" + id[0], droppable);
}
}
});
$("#change").click(function () {
var bat_value = parseInt($("#bat_level").val());
if (bat_value > 25) { progressValue(bat_value, "Green"); }
else if (bat_value > 15 && bat_value < 25) { progressValue(bat_value, "Yellow"); }
else if (bat_value < 15) { progressValue(bat_value, "Red"); }
});
$(document).on("click", ".boxclose", function () {
alert("remove widget");
var par = $(this).parent();
var id = par.attr("class").split(' ');
var droppable = $("#droppable");
var removing = droppable.find("." + id[0]);
removing.remove();
localStorage.removeItem("drop" + id[0]);
});
});
</script>
</HEAD>
<body>
<form id="form1" runat="server">
<div>
<div>
<div class="bat_voltage floatleft ui-widget-content" >
<a class="boxclose displayblock">×</a>
<p>Battery Voltage</p>
</div>
<div class="left_flight floatleft ui-widget-content" >
<a class="boxclose displayblock">×</a>
<p>Flight Time Left</p>
</div>
<div class="cnt_flight floatleft ui-widget-content" >
<a class="boxclose displayblock">×</a>
<p>Current Flight Time</p>
<div class="curFlight"></div>
</div>
<div style="clear:both"></div>
</div>
<div id="droppable" class="ui-widget-header">
<p>Drop here</p>
</div>
</div>
</form>
</body>
</HTML>
WORKING FIDDLE
source
share