Please login or sign up to post and edit reviews.
Modals, Popups, Popovers, Lightboxes
Media Type |
audio
Categories Via RSS |
News
Tech News
Technology
Publication Date |
Apr 17, 2023
Episode Duration |
00:29:26

In this Hasty Treat, Scott and Wes talk through the differences between modals, popups, popovers, lightboxes, and dialog boxes.

Show Notes

const showButton = document.getElementById('showDialog'); const favDialog = document.getElementById('favDialog'); const outputBox = document.querySelector('output'); const selectEl = favDialog.querySelector('select'); const confirmBtn = favDialog.querySelector('#confirmBtn');  // "Show the dialog" button opens the  modally showButton.addEventListener('click', () => {     favDialog.showModal(); }); // "Favorite animal" input sets the value of the submit button selectEl.addEventListener('change', (e) => {   confirmBtn.value = selectEl.value; }); // "Confirm" button of form triggers "close" on dialog because of [method="dialog"] favDialog.addEventListener('close', () => {   outputBox.value = `ReturnValue: ${favDialog.returnValue}.`; }); 

Tweet us your tasty treats

This episode currently has no reviews.

Submit Review
This episode could use a review!

This episode could use a review! Have anything to say about it? Share your thoughts using the button below.

Submit Review