How to use jquery dialog('open') correctly?
- by yew tree
dialog() is already initiated at this point with:
$("#repshare_dialog").dialog({autoOpen: false});
Next I'm trying to open a dialog box with a title, is this right?
$("#repshare_dialog").dialog({
open: function(event,ui) {
title: "foo"
}
});