Node.js Module for Popups in Jade

584 views Asked by At

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?"

1

There are 1 answers

14
gandreadis On BEST ANSWER

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.