1

I've tried to follow tutorials to make the button, but it's not working. The button will appear and I can click on it but nothing happens.

{ < a href= "/schools/{{term['TermCode']}}" >
< p > {{ term['TermDescr'] }} < /p>
< /a > }

That is what I want to turn into a button!! but it's not working when I try to include the tag. Help...enter code here

1 Answers1

0

This has been addressed in a previous question: How to create an HTML button that acts like a link?

I've found the form/submit format to be effective:

<form name="blah" action="link/i/want">
    <input type="submit" value="Go somewhere">
</form>

I had cross-browser issues with other means of doing this.

Community
  • 1
  • 1
Greg Syme
  • 392
  • 3
  • 8