Pracownia.Programowania/bower_components/js/app.js

7 lines
189 B
JavaScript

$(function(){
$("#content").bind("input change", function(){
$.post("/getHtml", {md: $(this).val()}, function(resp){
$("#md").html(resp.html);
});
})
});