I am trying to send number over to the server with JQuery on the client side and received with NOde.JS and ExpresJS on the server side.
Here\'s the client code:
Can you try logging req.body on the server side(console.log(req.body);? The variable num will be available as req.body.num instead of req.num.
req.body
console.log(req.body);
num
req.body.num
req.num