DEV Community

Marco
Marco

Posted on • Originally published at blog.disane.dev

Better Dialogs in HTML with <dialog> ๐Ÿ’ฌ

Learn how the tag in HTML simplifies modal dialogs and why it is better than previous techniques. ๐Ÿ’ฌ


The <dialog> tag is a relatively new introduction to HTML that is revolutionizing the way we design and manage modal dialogs and user interactions on web pages. In this article, we'll explore how the <dialog> tag works, how it was done before, and why this new method is so beneficial.

: The Dialog element - HTML: HyperText Markup Language | MDNPreview imageThe HTML element represents a modal or non-modal dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.

What is the <dialog> tag? ๐Ÿ“

The <dialog> tag was developed to provide a native method for creating modal dialogs in HTML. Modal dialogs are pop-up windows that draw focus to themselves and prevent interaction with the rest of the page until they are closed. This is particularly useful for user interactions such as confirmations, warnings or forms.

The best thing is that it is supported in all modern browsers:

Dialog element | Can I use... Support tables for HTML5, CSS3, etcPreview image

Basic structure of a <dialog> tag

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>dialog</title>
    <style>
        dialog {
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 300px;
        }
        dialog::backdrop {
            background-color: rgba(0, 0, 0, 0.5);
        }
        #closeDialog {
            background-color: #f44336;
            border: none;
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 4px 2px;
            cursor: pointer;
            border-radius: 4px;
        }
    </style>
</head>
<body>
    <button id="openDialog">Open Dialog</button>
    <dialog id="myDialog">
        <p>This is a modern dialog</p>
        <button id="closeDialog">close</button>
    </dialog>

    <script>
        const dialog = document.getElementById('myDialog');
        const openDialogButton = document.getElementById('openDialog');
        const closeDialogButton = document.getElementById('closeDialog');

        openDialogButton.addEventListener('click', () => {
            dialog.showModal();
        });

        closeDialogButton.addEventListener('click', () => {
            dialog.close();
        });

        // Automatic closing of the dialog after 10 seconds
        setTimeout(() => {
            dialog.close();
        }, 10000);
    </script>
</body>
</html>

Enter fullscreen mode Exit fullscreen mode

In this example, the "Open dialog" button opens the dialog box and the "Close" button closes it. In addition, the dialog is automatically opened after 3 seconds and closed after 10 seconds. The CSS ensures an appealing design of the dialog and a semi-transparent background (backdrop).

Automatic opening

The open attribute keeps the dialog open from the moment you open the page. By adding the open attribute to the <dialog> tag, the dialog will stay open automatically without requiring any user interaction. This can be useful if you want to display a message or important information as soon as the page loads.

<dialog id="myDialog" open>
    <p>This is a permanently open dialog.</p>
    <button id="closeDialog">Close</button>
</dialog>

Enter fullscreen mode Exit fullscreen mode

In this example, the dialog remains open immediately after loading the page, as the open attribute is used.

Styling the backdrop ๐ŸŽจ

The <dialog> tag has a special ::backdrop pseudo element that can be used to style the appearance of the background (backdrop). The backdrop is the semi-transparent area that is displayed when the dialog is open and prevents the user from interacting with other parts of the page.

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

Enter fullscreen mode Exit fullscreen mode

With the ::backdrop pseudo element, you can apply different styles, such as color, transparency or even more complex visual effects to highlight the modal dialog and draw the focus to it.

Previous implementation techniques ๐Ÿ“œ

Before the <dialog> tag was introduced, developers had to resort to various workarounds to create modal dialogs. The most common methods included:

  • JavaScript libraries: Libraries such as jQuery UI or Bootstrap offered solutions for modal dialogs.
  • Custom solutions: Developers created custom modals with HTML, CSS and JavaScript.

Example with jQuery UI

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>jQuery UI dialog example</title>
    <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
    <button id="openDialog">Open dialog</button>
    <div id="myDialog" title="Modal dialog">
        <p>This is a modal dialog with jQuery UI.</p>
    </div>

    <script>
        $(document).ready(function() {
            $('#myDialog').dialog({
                autoOpen: false,
                modal: true
            });

            $('#openDialog').click(function() {
                $('#myDialog').dialog('open');
            });
        });
    </script>
</body>
</html>

Enter fullscreen mode Exit fullscreen mode

Here we see an example with jQuery UI, which requires an additional dependency and more code to achieve the same effect.

Advantages of the <dialog> tag ๐ŸŽ‰

The <dialog> tag offers several advantages over the older techniques:

Simplicity and readability

The <dialog> tag is easy to use and requires less code, which improves readability and maintainability. It is a native HTML solution that does not require external libraries or extensive CSS and JavaScript codebases.

Better integration and accessibility โ™ฟ

Because the <dialog> tag is natively implemented in the browser, it provides better accessibility support. Screen readers and other assistive technologies can better handle native HTML elements, which improves the user experience for people with disabilities.

Performance and load times ๐Ÿš€

By reducing external dependencies, the <dialog> tag improves website performance. Fewer external libraries mean faster load times and less overhead.

Conclusion ๐Ÿ’ก

The <dialog> tag is a powerful addition to HTML that greatly simplifies the creation and management of modal dialogs. By using this tag, developers can easily and efficiently create interactive and accessible user experiences. So the next time you need a modal dialog, think about how the <dialog> tag can make your life easier.

We hope this article has helped you better understand the benefits and applications of the <dialog> tag. If you have any questions or comments, feel free to use the comment function below this article.


If you like my posts, it would be nice if you follow my Blog for more tech stuff.

Top comments (0)