123456789101112131415161718192021222324252627 |
- <!doctype html>
- <html>
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <title>Javascript resource demo</title>
- <script type="application/javascript" src="htmldemo.js"></script>
- <link rel="stylesheet" href="css/stylejs.css"/>
- </head>
- <body>
- <h1>Javascript resource demo</h1>
- <div id="pasjsconsole"></div>
- <script type="application/javascript">
- window.onload= rtl.run;
- </script>
- <button type="button" id="doinsert">Insert HTML from resource</button>
- <h1 id="headertext">Press button to insert HTML below from resource data</h1>
- <div id="playarea">
- </div><br>
- <p>
- <div>
- Created using <a target="_blank" href="https://wiki.freepascal.org/pas2js">pas2js.</a> Sources:
- <a target="new" href="htmldemo.lpr">Program</a>.
- </div>
- </p>
- </body>
- </html>
-
|