zangerbanger
04-21-2003, 01:40 AM
I was wondering how you make a link that leads directly to where the person was before. I'm pretty sure it has something to do with javascript. Please help me!
|
View Full Version : Back where you came from zangerbanger 04-21-2003, 01:40 AM I was wondering how you make a link that leads directly to where the person was before. I'm pretty sure it has something to do with javascript. Please help me! epolady 04-21-2003, 01:44 AM Back <a href="javascript:history.go(-1)">back</a> To go back 2 pages, use -2, etc Forward <a href="javascript:history.go(+1)">forward</a> To go forward 2 pages, use +2, etc Refresh <a href="javascript:location.reload()">refresh</a> No need to change this script Close Window <a href="javascript:window.close()">close window</a> No need to change this script zangerbanger 04-21-2003, 01:52 AM Wow! Thank you so much! |