Hello everyone. I am new in this forum and also new in this website. I am currently learning Jquery. As for the server connection I coudnt find any information related to jquery and node.js . Am i missing sonerhing? can you guide me for reaching information? thank u all.
Jquery runs on the client. It makes ajax calls back to the server which would be where your node.js is running. You need to program functions that you can use with the ajax calls. for instance, I use jquery with a cakephp system So my ajax call might have the url parameter set to /individuals/validate/123 and my server would have a function called validate that would accept the parameter 123 your node.js will have a different url structure but how they work together will be the same.