Ausnahme gefangen: SSL certificate problem: certificate is not yet valid ๐Ÿ“Œ Capture VS Bubble

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š Capture VS Bubble


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: dev.to

On handling events in Javascript you may come across the bubble and capture phase. In this blog let's learn about both the phase

As you can see in the above example we have 3 div's Grandparent, parent, and child let's try to add an on-click listener to each of them.

const grandParent = document.getElementById('grandParent'),
    parent = document.getElementById('parent'),
    child = document.getElementById('child');

grandParent.addEventListener('click', () => {
    console.log('grand parent clicked')
})
parent.addEventListener('click', () => {
    console.log('parent clicked ')
})
child.addEventListener('click', () => {
    console.log('child clicked')
})

The above code will produce the following output

//Clicking the green area
child clicked
parent clicked
grandParent clicked

//Clicking the red area
parent clicked
grandParent clicked

//Clicking the blue area
grandParent clicked

As you can see in the above example event fired from the innermost element to the outermost element this phase is called Bubble. By default, events will be triggered during the bubble phase

Now let's try capture, To use capture we need to pass {capture: true} as the third argument to the addEventListener

grandParent.addEventListener('click', () => {
    console.log('grandparent clicked')
})
parent.addEventListener('click', () => {
    console.log('parent clicked')
})
child.addEventListener('click', () => {
    console.log('child clicked')
})

grandParent.addEventListener('click', () => {
    console.log('grandparent clicked from the capture')
},{capture:true})
parent.addEventListener('click', () => {
    console.log('parent clicked from the capture')
},{capture:true})
child.addEventListener('click', () => {
    console.log('child clicked from the capture')
},{capture:true})

The above code will produce the following output

//Clicking the green area
grandparent clicked from capture
parent clicked from the capture
child clicked from the capture
child clicked
parent clicked
grandparent clicked

//Clicking the red area
grandparent clicked from capture
parent clicked from the capture
parent clicked
grandparent clicked

//Clicking the blue area
grandparent clicked from capture
grandparent clicked

You can now see during the capture phase event is fired from the outermost element to the innermost element and then it will start the bubbling phase to bubble the event from the innermost element to the outermost element

Conclusion

Capture will move from the outermost element to the innermost element whereas Bubble moves from the innermost element to the outermost element

If you have read this far please leave a like and share your thoughts in the comment section

Happy Coding
...



๐Ÿ“Œ Sunbird App Will Bring iMessage to Android, Ending Blue Bubble vs Green Bubble Bullying


๐Ÿ“ˆ 36.87 Punkte

๐Ÿ“Œ Bubble Sort Algorithm - Most Asked Questions About Bubble Sort


๐Ÿ“ˆ 36.87 Punkte

๐Ÿ“Œ Capture VS Bubble


๐Ÿ“ˆ 29.68 Punkte

๐Ÿ“Œ Elgato Game Capture 4K60 S+: Externe Capture-Karte fรผr 4K60 HDR braucht keinen PC


๐Ÿ“ˆ 22.48 Punkte

๐Ÿ“Œ Capture One Version 20.1 und Capture One fรผr Nikon erschienen


๐Ÿ“ˆ 22.48 Punkte

๐Ÿ“Œ TUF Gaming Capture Box CU4K30: Capture-Box-Premiere kann 4K30 oder FHD120 aufnehmen


๐Ÿ“ˆ 22.48 Punkte

๐Ÿ“Œ Faire une capture d'รฉcran ou une capture vidรฉo sur un Mac


๐Ÿ“ˆ 22.48 Punkte

๐Ÿ“Œ Tipard Screen Capture 1.1.20.4691 - Capture video, audio, online chats, and others on Mac.


๐Ÿ“ˆ 22.48 Punkte

๐Ÿ“Œ Wochenrรผckblick: Bubble Bobble trifft auf Vulkan und DirectX 12


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Breaking Out the Boy in the Bubble: The Security Immune System for Data Protection


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Wochenrรผckblick: Bubble Bobble trifft auf Vulkan und DirectX 12


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Breaking Out the Boy in the Bubble: The Security Immune System for Data Protection


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Self-hosted search option is a new approach to bursting the filter bubble


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Why You Should Worry About A Bitcoin, Crypto Bubble


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Bitcoin Bubble Burst soll vor Kurseinbruch warnen


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Bubble Collision Simulations in Milliseconds | Two Minute Papers #231


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Boffins don't want to burst your bubble โ€“ they create them with sound


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Google Hasn't Kept Promise to Stop Bubble-Wrapping Users: Report


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Scraping By On Six Figures? Tech Workers Feel Poor in Silicon Valley's Wealth Bubble


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ The Bitcoin Bubble


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Is Bitcoin Just A Bubble That Will Burst In 2019 Or Really A Worthwhile Investment?


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Is Bitcoin Just A Bubble That Will Burst In 2019 Or Really A Worthwhile Investment?


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Doctors Used HIV To Develop Cure For 'Bubble Boy' Disease


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Top esports continue to report considerably growth, but is it all a bubble?


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ The Case that Bitcoin Is a Bubble


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Silicon Valley's Tech Bubble Is Now Larger Than In 2000. Will It Come To An End?


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ 'Carbon Bubble' Could Spark Global Financial Crisis, Study Warns


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Bubble Bobble 4 Friends exklusiv fรผr Nintendo Switch


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Return of the Bubble Car?


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Filter Bubble โ€“ DuckDuckGo Says Chrome Incognito Mode Does not Provide Anonymity


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ How to set up the Bubble GTK theme on Linux


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ How to set up the Bubble GTK theme on Linux


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Bubble Witch 3 Saga - Windows 10 App 6.3.4.0 Deutsch


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Is a Realistic Water Bubble Simulation Possible?


๐Ÿ“ˆ 18.44 Punkte

๐Ÿ“Œ Neue Emojis 2020: Genderloser "Weihnachtsmensch", Bubble-Tea und mehr


๐Ÿ“ˆ 18.44 Punkte











matomo