resizable on div has stopped working...

resizable on div has stopped working...

i don't recall changing my code in any significant way and today i was previewing my html in browser and noticed that the resizable attribute of one of my divs did not load...

here is the unchanged code:

var dragOpts = {
revert: "invalid",
snap: ".droppable",
snapTolerance: 50,
stop: dragStopCB,
drag: dragStopCB,
opacity: "0.8"
};
var resOpts = {
maxHeight: 120,
minHeight: 80,
stop: resStopCB,
resize: resStopCB
};
$('#task').draggable(dragOpts).resizable(resOpts);

the #task div is draggable but NOT resizable for some reasonn... what could be the reason? this worked fine before and i haven't changed anything significant.

thanks.[/list]