Thread: navigation
Results 1 to 8 of 8
Related
-
Navigation bar problems Forum: CSS Forum
Replies: 2 -
Navigation bar using DIV and CSS Forum: CSS Forum
Replies: 0 -
Navigation Forum: HTML Forum
Replies: 5 -
Navigation Forum: HTML Forum
Replies: 1
-
12-07-2002, 06:45 PM #1
navigation
how do you put "next" and "previous" buttons on the bottom of your page so visitors can view your pages in order?
Thanks
-
12-07-2002, 08:27 PM #2
The same as any other link. Assuming you have the next and previous images, it's:
<A HREF=previouspagename.htm><IMG .... ></A>
Someone else can pop-in with the <FORM ...> or other method of using the TYPE=BUTTON methods - I don't use them.
-
12-07-2002, 10:40 PM #3
http://www.a1javascripts.com/form_navigation/forwardback/forwardback.html ... I think this is what you need.
-
12-08-2002, 05:00 PM #4
<INPUT type='button' value='Previous' name='Previous' onClick='javascript:history.go(-1)'>
<INPUT type='button' value='Next' name='Next' onClick='javascript:history.go(+1)'>
i think..
-
12-09-2002, 01:09 PM #5
Doorknob,
rather than
<INPUT type='button' value='Previous' name='Previous' onClick='javascript:history.go(-1)'>
<INPUT type='button' value='Next' name='Next' onClick='javascript:history.go(+1)'>
I think computerfan1 (and I) want
<INPUT type='button' value='Previous' name='Previous' onClick='page0.htm'>
<INPUT type='button' value='Next' name='Next' onClick='page2.htm'>
(note that the above doesn't work)
with relative referencing being preferred over the more complex http:// ... to the actual web host server location.
-
12-09-2002, 01:18 PM #6
oops. sorry my mistake. didnt read his post throughly.
-
12-09-2002, 01:53 PM #7
Both you and Mikailus' answers undoubtedly helped anyone lurking for those solutions - so, no apologies are needed - it'd just be nice to have the same button-type solutions for more immediately web site needs without having to resort to more <IMG ...> file requirements.
(And, who knows, maybe computerfan1 was looking for the back and forward answers, too, in addition to or as opposed to my presumption.)
-
12-10-2002, 12:06 AM #8