B bengal85 Member Jun 7, 2011 #1 Okay so I need a figure out how to code a button that will take people from page to page..I need to have three separate buttons. I need them to link between the 3 files I have saved on my hard drive. any one know how to code a button
Okay so I need a figure out how to code a button that will take people from page to page..I need to have three separate buttons. I need them to link between the 3 files I have saved on my hard drive. any one know how to code a button
S sead12 New Member Jun 12, 2011 #2 Are you trying to link page to page, or link from the html code to the files on your computer?
S sead12 New Member Jun 12, 2011 #4 Here is a html code snippet for a html button using some javascript in the onClick event. Just change the "page.html" with the page you want to link. <FORM> <INPUT TYPE="button" onClick="parent.location='page.html'"> </FORM>
Here is a html code snippet for a html button using some javascript in the onClick event. Just change the "page.html" with the page you want to link. <FORM> <INPUT TYPE="button" onClick="parent.location='page.html'"> </FORM>