I am trying to change the left position for a dialog box created with jQuery, but it does not seems to recognize the new value; here is my code:
$('#settype_dialog').dialog({
autoOpen: true,
width: 200,
height: 200,
show: 'bounce',
hide: 'puff'
}
);
$('#settype_dialog').css({"left", cX});
$('#settype_dialog').dialog('option', 'title', 'Select Set Type');
$('#settype_dialog').html(xml_text);
$('#settype_dialog').dialog('open');
Where cX is 130