Reputation: 447
I am trying to make it possible to drag my divs on the screen and be also able to resize the divs by dragging the bottom-right corner of a resizable div. It works great in Chrome if I use:
$('div').draggable();
But FireFox will not resize. Any ideas would be appreciated.
If I remove the jQuery - draggable command the resize works great in FireFox, however...
TIA
DK
Upvotes: 0
Views: 354
Reputation: 2788
If you use jquery resizable then that might be your problem.
$( "div" ).resizable();
Upvotes: 1