anthonypliu
anthonypliu

Reputation: 12437

How to call a function after a div is resized with the resizable() function?

I was wondering after I resize a div that has the .resizable() feature on it, how do I make it call a function as soon as the user resizes the box and lets go of the mouse?

Thanks!

Upvotes: 0

Views: 1279

Answers (1)

amfeng
amfeng

Reputation: 1073

From: http://docs.jquery.com/UI/Resizable#events

You can use the stop event, which is triggered at the end of a resize() operation.

Upvotes: 2

Related Questions