$(document).ready(function() { // Drag with title new jBox('Modal', { attach: $('#modalDragOnTitle'), width: 180, height: 50, title: 'jBox', overlay: false, content: 'Drag me around by using the title', draggable: 'title' }); // Drag anywhere new jBox('Modal', { attach: $('#modalDragOnElement'), width: 180, height: 50, title: 'jBox', overlay: false, createOnInit: true, content: 'Drag me around by clicking anywhere', draggable: true }); });