A simple JS (with html and css) function to show prompt modals. If you are only looking for the alert functionality with one button look at my Vanilla-JS-Alert project.
To use this function you only need to follow these four steps:
- Download the prompt.js and modal.css to your project.
- Link to the prompt.js and modal.css in your html file.
- Add the content of modal.html to the bottom of the body of your html file.
- Start calling the show_prompt(); function. See below for examples.
Open the index.html file to see examples in action
The function with parameters
show_prompt(title, message, pribtnHide = false, pribtnLabel = "Close", secBtnLabel = '', secBtnAction = '')Example with a custom text label for the close button
show_prompt('Open website', 'Visit larrindell.com?', false, 'No', 'Yes', `window.open('https://larrindell.com');document.getElementById('modal-alert').style.display = 'none'`)