Gazelle/static/functions/bbcode_sandbox.js

14 lines
274 B
JavaScript
Raw Normal View History

2013-07-04 08:00:56 +00:00
$(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);
});
});
});