summaryrefslogtreecommitdiffstats
path: root/static/functions/bbcode_sandbox.js
blob: fa10253a04525ce93058c11e70b1f6652c202587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(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);
		});
	});
});