Gazelle/static/functions/bbcode_sandbox.js
2013-07-04 08:00:56 +00:00

14 lines
274 B
JavaScript

$(document).ready(function() {
$("#sandbox").keyup(function() {
$.ajax({
type : "POST",
dataType : "html",
url : "ajax.php?action=preview",
data : {
"body" : $(this).val()
}
}).done(function(response) {
$("#preview").html(response);
});
});
});