Files
fixparsec/static/index.js
2023-11-13 10:32:56 -07:00

7 lines
196 B
JavaScript
Executable File

$(document).ready(function(){
$('#reset').on('click', function(){
$.post("http://localhost:3000/110", function( data ){
$( "#result" ).html( data );
});
});
});