HTML dialog Tag: Main Tips
- Introduced in HTML5,
dialogtag specifies an interactive dialog box. - You must use both opening and closing
dialogtags. - This tag supports global attributes.
Using dialog Tags
HTML dialog tags create pop-up dialog boxes in the code:
Example
<table>
<tbody>
<tr>
<th>Morning<dialog open>This is an open dialog window</dialog></th>
<th>Day</th>
<th>Evening</th>
</tr>
<tr>
<td>8:00</td>
<td>12:00</td>
<td>17:00</td>
</tr>
</tbody>
</table>
open is the most commonly used attribute for this tag. When it is set, the HTML dialog box is active and available for interaction. When it is not set, the box will not be displayed.
Note: you cannot use the tabindex attribute with HTML dialog tags.
Browser support
Chrome
37+
Edge
-
Firefox
53+
IE
-
Opera
24+
Safari
-
Mobile browser support
Chrome
37+
Firefox
53+
Opera
-
Safari
-