Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created August 30, 2020 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prof3ssorSt3v3/46ea5a3d466a26b6c794d8f792f835a8 to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/46ea5a3d466a26b6c794d8f792f835a8 to your computer and use it in GitHub Desktop.
alert confirm and prompt
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
* {
box-sizing: border-box;
}
html {
font-size: 20px;
font-weight: 400;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1.7;
}
p:hover {
background-color: blanchedalmond;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Using alert(), confirm(), and prompt()</h1>
<p class="a">alert</p>
<p class="c">confirm</p>
<p class="p">prompt</p>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.querySelector('p.a').addEventListener('click', handleClickA);
document.querySelector('p.c').addEventListener('click', handleClickC);
document.querySelector('p.p').addEventListener('click', handleClickP);
if ('document' in window) {
console.log('doc');
}
});
function handleClickA(ev) {
//alert
let answer = alert('this is a message');
console.log(answer); //undefined
}
function handleClickC(ev) {
//confirm
let answer = confirm('Are you sure?');
console.log(answer); //true false
}
function handleClickP(ev) {
//prompt
let answer = prompt('This is my question', 'default answer');
console.log(answer); //answer null
}
</script>
</body>
</html>
@arthuremil
Copy link

I want to create an alert pop up with a website link that shows when a user opens firefox or edge browser. How can I implement these attributes into code?

@arthuremil
Copy link

It is an idea for the public computers of my university
https://github.com/arthuremil/ecosia-search-alert-pop-up.git

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment