var data_part1 = "";
$ (función () {
$ (“#comment_dialog”) .dialog ({
autoOpen: falso,
altura: 180,
anchura: 560,
modal: verdad
});
$ (“.faux_link”) .live (“tecleo”, función () {
$ (“#comment_dialog ").dialog (“abrirse ");
data_part1 = $ (éste) .attr (“nombre ");
});
$ (“#add_comment_button”) .live (“tecleo”, función () {
$ (“#comment_dialog”) .dialog (“cercano ");
var query_string = data_part1 + $ (“#comment_input ").val ();
$.ajax ({
URL: “. /scripts/comment_dialog.php”,
dataType: “HTML”,
datos: el query_string,
éxito: función (datos) {
$ (“#wall_post_cont ").html (datos);
$ (“botón”) .button () .css (“exhibición”, “ninguna ");
}
});
});
});
|