1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/development-frameworks/django/bootcamp/messenger/static/js/messages.js
2016-11-08 13:10:49 -08:00

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;
});
});