Resizable callbacks not firing

Resizable callbacks not firing


I was wondering if anyone has had any success - using the latest
Google hosted file versions of jQuery and jQuery UI - of getting the
resizable callbacks to fire.
Here's the code I'm using:
-----------------------------------------------------------------------
$("#resizable").resizable({
    maxHeight: 250,
    maxWidth: 350;
    stop: function () {
        alert("I've stopped")
    }
});
-----------------------------------------------------------------------
Does anyone know of any working - and public - examples I can look
to?