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:
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'`)