I was wondering if anyone could help me with making a program in HTML that looks like this:
<html>
<body>
<script>
var iframesite = prompt ('Enter in a site');
</script>
<iframe src="?"></iframe>
</body>
</html>
So what would I put in the place of the "?"
? I want it to be javascript inside of the src attribute so that I can put 'https:// ' + iframesite
for a src.
Thanks