JSFiddle - React, Tailwind, and code Playground
by namuol
HTML
<form><input type="hidden" name="msg" value="fromDevice"/>
<button>PUSH ME</button></form>
JavaScript
$(function() {
$('form').submit(function() {
$.post('http://lmn2.us.to:3000/ping', $('form').serialize(), function(res) {
alert(res);
});
return false;
});
});