.resizableDestroy is not a function - error

.resizableDestroy is not a function - error


I am getting '.resizableDestroy is not a function' when calling
resizableDestroy();
//clickfunction to create
$('div#pick').click(function() {
        $('form#textEdit').hide();
        $('#canvas').css('cursor','default');
        $('div.movable').click(function() {
            $(this).resizable().draggable({containment: 'parent' });
            });
});
//clickfunction to destroy
$('div#text').click(function() {
        $('form#textEdit').show();
        $('div.movable').resizableDestroy();
        });
Anythoughts? I must be doing something incorrect?