<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<script type="text/javascript">
var i = 0;
function doThing() {
i++;
var a = document.getElementById("stepsAchieved");
a.contentWindow.document.write("Here again " + i + "<br/>");
a.contentWindow.document.close();
}
</script>
<input type="button" value="hello" onclick="doThing();return false;" id="fred"/>
<hr />
<iframe src="" id="stepsAchieved" name="garminStepsAchieved" frameborder="1" height="200px" width="340px" scrolling="auto">
</iframe>
</body>
</html>
No comments:
Post a Comment