Last active
October 11, 2023 07:35
-
-
Save miladj3/0c4ca1b93803842aa6a20159bf4d42f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const body = document.body; | |
console.log('ddddd'); | |
const iframe = document.createElement('iframe'); | |
iframe.src = 'https://embeded.receptstatus.nl'; | |
iframe.setAttribute('width', '100%'); | |
iframe.setAttribute('height', '500'); | |
body.appendChild(iframe); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment