Managed to get index.html working on android

This commit is contained in:
Bryan Schumaker 2010-11-16 21:19:47 -05:00
parent 49b459f4d3
commit 25aae84f0b
2 changed files with 11 additions and 3 deletions

View File

@ -1,9 +1,17 @@
<html>
<head>
<script type="app/javascript" src="test.js" />
<!--<script type="text/javascript" src="test.js"></script>-->
<script type="text/javascript">
function message()
{
document.getElementById("bryan").innerHTML = "Internal javascript test!";
}
</script>
</head>
<body onload=message()>
<body>
<!--<a id="bryan" onclick="message();">Text</a>-->
<a href="test.py">Test python</a>
</body>
</html>

View File

@ -1,5 +1,5 @@
function message()
{
document.write("External javascript test!")
document.getElementById("bryan").innerHTML = "Internal javascript test!";
}