I can easily make a element draggable, but not a element. How can I make the draggable, too?
element draggable, but not a element. How can I make the draggable, too?
Its not a bug , use this, $('input[type=button]').draggable({cancel:false}); You need to cancel the default click event of the button.
$('input[type=button]').draggable({cancel:false});