The purpose of the following code is to provide a link to another form from inside an html tag called Details.
The code works when the user clicks on “Template”… i.e., the program jumps to a form called “Template”.
HOWEVER, when the code is inserted after a <p>
within a <Details>
tag, what shows up during execution is NOT …Template…(which is correctly highlighted as a link) but rather …htmlView.innerHTML=Template… “Template” is still a link, but I don’t want the …“htmlView.innerHTML”… to display. How do I get to show just the link, in this case, just “Template”?
Here’s the code:
htmlView.innerHTML=<a href=JavaScript:FuJump1();>Template</a>
Thanks… Tom C.