I am using JQuery Resizable widget on the vertical Ruler as shown in the link below. Once, I start resize using the east handle and stop it. Now, I try to resize the ruler again and I find the resize handle not showing up. I checked the html div but the ui-resizable div is deleted. Any sort of help would be useful.
My JS Code:
createRuler();
$('.ruler').resizable({
handles: "e",
resize: function(event, ui) {
$('.ruler').empty();
createRuler();
},
stop: function(event, ui) {},
start: function(event, ui) {}
});