Web Developer Tips 💻☕️
696 subscribers
45 photos
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Attribut #HTML universel: #popover

example:

<button popovertarget="my-popover">Open Popover</button>

<div popover id="my-popover">Greetings, one and all!</div>



@WebDeveloperTips
👍4
This media is not supported in your browser
VIEW IN TELEGRAM
#HTML #dialog element

example:


<button command="show-modal" commandfor="my-dialog">Open dialog</button>

<dialog id="my-dialog">
<p>This dialog was opened using an invoker command.</p>
<button commandfor="my-dialog" command="close">Close</button>
</dialog>

@WebDeveloperTips
👍4