javascriptnode.jsjade4j

Node.js Module for Popups in Jade


I have a Application in Node.js with the Template Engine Jade. I need a module to show a message Box or similar, when the user clicks on a submit button, Like "Do you really submit?"


Solution

  • If it is a browser app, you can easily use the confirm function (see MDN for usage documentation). See this SO answer for an example of usage in conjunction with onclick.