mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
$(function () {
|
|
$("#send").submit(function () {
|
|
$.ajax({
|
|
url: '/messages/send/',
|
|
data: $("#send").serialize(),
|
|
cache: false,
|
|
type: 'post',
|
|
success: function (data) {
|
|
$(".send-message").before(data);
|
|
$("input[name='message']").val('');
|
|
$("input[name='message']").focus();
|
|
}
|
|
});
|
|
return false;
|
|
});
|
|
}); |