How can I position the jquery UI dialog SPECIFICALLY, so that it goes to a position not defined by center, top, etc.
Thanks, I have tried to be as specific as posible.>
This isn't an exact answer to your question, but you can mix 'top' with pixel values, like this:
$('#widget').dialog({ position: ['top', 100] });
This will position the dialog centered along the X axis, 100 pixels down from the top.