Reputation: 1853
When I resize using the ui-resizable and begin dragging, other divs on the page are highlighted blue as if I selected them.
I tried using CSS and outline none on the classes but it doesn't work.
Please provide your insight.
Thank you- all suggestions are appreciated.
Upvotes: 0
Views: 178
Reputation: 100
Try this
$("element").resizable({
resize: function(event) {
document.onselectstart = function () { return false; };
},
stop: function(event) {
document.onselectstart = function () { return true; };
},
});
Upvotes: 1