Pracownia.Programowania/bower_components/js/app.js

7 lines
189 B
JavaScript
Raw Normal View History

2018-12-22 20:04:32 +01:00
$(function(){
$("#content").bind("input change", function(){
$.post("/getHtml", {md: $(this).val()}, function(resp){
$("#md").html(resp.html);
});
})
});