GithubHelp home page GithubHelp logo

JavaScript about html6 HOT 3 CLOSED

oscargodson avatar oscargodson commented on June 2, 2024
JavaScript

from html6.

Comments (3)

OscarGodson avatar OscarGodson commented on June 2, 2024

Good point about the inline script tags. I'd probably do something like:

<html:script>
  // JavaScript
  alert('hello world');
</html:script>

There's already support for linking to external resources with <html:link>, but yeah, there isn't anything for scripts.

What do you mean "importing scripts in the html:body"?

from html6.

m93a avatar m93a commented on June 2, 2024

I mean that in HTML5 you can import an external script in the body using <script src="..."></script> but if HTML6 used <html:link> instead, the script would have to be imported in the head.

Example:

<!DOCTYPE HTML>
<html>
 <head>
  <meta charset="utf-8" />
  <title>Example</title>
 </head>
 <body>
  <p id="abc">Hola!</p>
  <script src="aslkfdj.js">//This cannot be done in HTML6</script>
 </body>
</head>

The problem is that scripts in head can't neither modify nor read elements in body. You can add use window.onload event, but it's unnecessarily long. This can be solved by adding something like loadAtEnd attribute that will cause <html:link>s to be parsed after the body loads.

from html6.

OscarGodson avatar OscarGodson commented on June 2, 2024

<html:link> doesnt have to be in the head. The goal of HTML6 is to consolidate the tags and make the API as small as possible, so if you wanted to do:

<html:body>
Hello world
<html:link href="somescript.js">
</html:body>

You could. But, the inline scripts you mentioned are a real problem that I totally missed (thanks!). I like the idea of a <html:script>. It also allows you to put any sort of script like people do now with <script type="template">.

from html6.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.