1
I’m using the following code to move bootstrap windows:
$('#divform').modal({
keyboard: false,
show: true
});
//Jquery draggable
$('#divform').draggable({
handle: ".modal-header"
});
That is, I have to make use of the explicit jquery to move the window, I wonder if the bootstrap gives this feature without needing jquery.
No, if you check the bootstrap documentation itself says that it uses jQuery to bring components to life.
– Gabriel Rodrigues
http://getbootstrap.com/javascript/ "Bring Bootstrap components to life with more than a dozen custom jQuery plugins. Easily include all of them, or one by one."
– Gabriel Rodrigues
No, you need to use jQuery to do this with bootstrap.
– Rafael Ferreira