Microsoft HTA/CSS and JavaScript

From Computernewb Wiki
Jump to navigation Jump to search
< Microsoft HTA/Window styles and attributes!Microsoft HTA/Changing Internet Explorer Version >


HTA, like HTML, can have CSS and JavaScript. As HTA runs on Internet Explorer, it may not fully support CSS3 and ES6. You can use <style> and <script> tags or inline CSS/JS to use styles and scripts.

Example

Language: HTA
<!DOCTYPE html>
<html>
  <head>
    <title>Hello, world!</title>
    <HTA:APPLICATION
      APPLICATIONNAME = "Hello, world!"
    />
    <style>
      body {
        background: red;
        color: blue;
        text-align: center;
      }
    </style>
    <script>
      function helloWorld() {
        document.getElementById('demo').innerHTML = 'You clicked it!!';
      }
    </script>
  </head>
  <body>
    <h1 id="demo" style="background:black;padding:8px">Hello, world!</h1>
    <button onclick="helloWorld();">Click me!</button>
  </body>
</html>