Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function addParagraph() {
- const diller = prompt("Tilføj:");
- const lastParagraph = document.querySelector('p:last-of-type');
- const newParagraph = document.createElement('p');
- newParagraph.textContent = diller;
- if (lastParagraph) {
- lastParagraph.insertAdjacentElement('afterend', newParagraph);
- }
- }
- document.addEventListener('keydown', function(event) {
- if (event.ctrlKey && event.shiftKey && event.key === 'H') {
- event.preventDefault();
- addParagraph();
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement