Come together with the global Drupal community in Rotterdam, 28 Sept – 1 Oct 2026. Sessions, contribution, connection, and Early Bird savings until 8 June.
A note about this, by the way: I found a way to make the popup boxes draggable. Include the jquery.livequery.js and the jQuery UI files, and then add this code somewhere:
$(function() {
$('.popups-box').livequery(function() {
$('.popups-box').draggable();
$('.popups-box').resizable(); // This isn't necessary for dragging, but allows popups to also be resizable
});
});
Would be nice, though, if this were a built-in part of the module.
Comments
Comment #1
jessepinho commentedSubscribed. Is it possible to add this feature? This would be very useful...
Comment #2
jessepinho commentedA note about this, by the way: I found a way to make the popup boxes draggable. Include the jquery.livequery.js and the jQuery UI files, and then add this code somewhere:
Would be nice, though, if this were a built-in part of the module.