Please tell me how to catch the event of changing the position of an element (drag and drop) in jQuery Nestable
View Code
$(document).on('change', '.dd-handle', function(e) { e.preventDefault(); alert(); });
does not work :(
Please tell me how to catch the event of changing the position of an element (drag and drop) in jQuery Nestable
View Code
$(document).on('change', '.dd-handle', function(e) { e.preventDefault(); alert(); });
does not work :(
Source: https://ru.stackoverflow.com/questions/556205/
All Articles
.dd
, not.dd-handle
- toxxxa<div class="dd-handle" data-id="1">Item 3</div>
), i.e. which was moved? - Guest