How to run code in HTML 6??.. i am unable to run frame tags in HTML 5.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to run code in HTML 6??.. i am unable to run frame tags in HTML 5..

10th Dec 2017, 5:39 AM
Priyan
Priyan - avatar
10 Answers
+ 5
Hi Priyan... I'm curious why you believe HTML6 is released? I've seen questions about HTML6 / CSS4 recently and it's likely due to a lot of confusing information on the web. In short, these specifications are not even in draft mode. See my answers in these posts (sort by date): https://www.sololearn.com/Discuss/748297/html6-sneak-peek https://www.sololearn.com/Discuss/746150/i-heard-html6-is-out
10th Dec 2017, 5:48 AM
David Carroll
David Carroll - avatar
+ 1
<frame> tags were removed in HTML5. What specifically are you attempting to do with <frame> tags? If you are attempting to embed a different webpage into your webpage, then you would want to use the <iframe> (inline frame) tag. Otherwise, <frame> tags are completely obsolete in HTML5 and are not coming back.
10th Dec 2017, 6:12 AM
David Carroll
David Carroll - avatar
+ 1
ok.. thanks..😃
10th Dec 2017, 6:19 AM
Priyan
Priyan - avatar
+ 1
Interesting... I haven't seen a question about vbscript in HTML since early 2000s. I suppose this requires a few clarifications first: 1. Are you attempting to run VBScript on Windows using Internet Explorer 10 or older? 2. Do you have VBScript enabled? - https://www.tutorialspoint.com/vbscript/vbscript_enabling.htm 3. Are you specifying the following in your <script> tag? <script type="text/vbscript"> Without seeing the code, I'm unable to tell you what you might be doing wrong. You might want to reconsider learning VBScript in HTML because support for this it is pretty much being phased out by Microsoft.
10th Dec 2017, 6:42 AM
David Carroll
David Carroll - avatar
+ 1
@David there are places where VBScript is still used My girlfriend's teacher use it in classes with JS. I found it curious (and weird)
10th Dec 2017, 6:54 AM
Mickel
Mickel - avatar
+ 1
@Mickel... I think academia is very guilty of teaching tech that is behind the curve. On a separate note... How awesome is it that your girlfriend is studying programming? My wife's eyes glaze over if I ever attempt to talk about technology. 🤤 LOL... She has no interest in learning this. 😕 Luckily, we have plenty other things in common to talk about. 😀
10th Dec 2017, 7:14 AM
David Carroll
David Carroll - avatar
+ 1
@David Carrol.. <script lang="vbscript"> dim a a=2 document.write(a) </script> 👆👉output: empty screen <script lang="vbscript"> document.write("a") </script> 👆👉output: a <script lang="vbscript"> dim a document.write("a") </script> 👆👉output: empty screen can you explain this completely?
10th Dec 2017, 7:58 AM
Priyan
Priyan - avatar
0
David Carrol.. I am unable to run frame tags.. how can I run it? I found that frame tags are not supported in Html 5.. that's why I am looking for HTML 6 to run my code!!
10th Dec 2017, 5:52 AM
Priyan
Priyan - avatar
0
David Carrol.. sorry for distrubing.. I had one more doubt.. I had just started studying about vbscript in html.. qstn: I am unable to declare and print a variable inside script tag.. but it's printing statements when I used to print without declarations...
10th Dec 2017, 6:26 AM
Priyan
Priyan - avatar
0
Totally agree with that, @David It's pretty amazing. She's pretty good at Java, although we never talk about tech (unless someone is stuck on something) Another positive aspect is that she does not think I'm crazy when I want to climb the wall because something does not work as it should!
10th Dec 2017, 7:21 AM
Mickel
Mickel - avatar