ダイアログの位置で、ダイアログを配置するために指定された形式で構文を指定していますが、間違っています
$(".openDialogs").live("click", function (e) {
e.preventDefault();
$("<div></div>")
.addClass("dialog")
.attr("id", $(this)
.attr("data-dialog-id"))
.appendTo("body")
.dialog({
position:[10,100],
resizable: false,
minWidth:250,
maxWidth: 350,
title: $(this).attr("data-dialog-title"),
close: function () { $(this).remove() },
modal: true
})
.load(this.href);
});