DeKoss
DeKoss

Reputation: 447

Drag DIV and Drag Resize in FireFox

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

Answers (1)

QBM5
QBM5

Reputation: 2788

If you use jquery resizable then that might be your problem.

$( "div" ).resizable();

Upvotes: 1

Related Questions