Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<a href="#" onclick="parent.document.formname.elementname.value = 'hi';">Populate parent field</a>
<script language="javascript">
function changetext(text)
if text=="a"
parent.document.test.value="testing testing 123";
else if text=="b"
parent.document.test.value="dude,,, check it out";
</script>
<img src="TF23_03_WT.jpg" width=85 height=85 onclick="changetext("a");">
<script language="javascript">
[red]<!--[/red]
function changetext(text) [red]{[/red]
if [red]([/red]text == "a"[red])[/red]
parent.document.test.value="testing testing 123";
else if [red]([/red]text == "b"[red])[/red]
parent.document.test.value="dude,,, check it out";
[red]}[/red]
[red]-->[/red]
</script>
<img src="TF23_03_WT.jpg" width=85 height=85 onclick="changetext('a');">