I can easily make a <div>
element draggable, but not a <button>
element. How can I make the <button>
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.