mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-13 19:09:23 +02:00
28 lines
868 B
HTML
28 lines
868 B
HTML
<!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>
|
|
|