Login or Sign Up
Logging in...
Remember me
Log in
Forgot password or user name?
or
Sign Up
Log in with
Search in titles only
Search in JavaScript programming only
Search
Advanced Search
Forum
Groups
Today’s Posts
Calendar
Forum
Client side development
JavaScript programming
Announcement
Collapse
No announcement yet.
access to pages
Collapse
X
Collapse
Posts
Latest Activity
Photos
Search
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
nerdgrrl
New to the CF scene
Join Date:
Jun 2002
Posts:
3
Share
Tweet
#1
access to pages
Jun 17, 2002, 03:22 PM
I am looking for a script that will only let a user access a certain page if they came FROM a designated other page. Is that possible?
Thanks!
bpaulsen2000
New to the CF scene
Join Date:
Jun 2002
Posts:
118
Share
Tweet
#2
Jun 17, 2002, 03:40 PM
hi,
don't have a sample for your right now, but what you're looking
for is the window.referrer function.
Comment
Post
Cancel
nerdgrrl
New to the CF scene
Join Date:
Jun 2002
Posts:
3
Share
Tweet
#3
Jun 17, 2002, 06:58 PM
Thanks! Does anyone else out there possibly have a coding example for me?
Comment
Post
Cancel
whammy
New to the CF scene
Join Date:
Jun 2002
Posts:
3687
Share
Tweet
#4
Jun 17, 2002, 07:30 PM
Keep in mind that It's not totally reliable - for instance it won't work if they access your page directly (from a bookmark, for example), since there will not be a referrer in that case. However, you did ask for an example!:
<script language="JavaScript" type="text/javascript">
<!--
var thereferrer = document.referrer;
if(thereferrer != "http://www.mysite.com/myreferringpage.html"){
window.location = "http://www.barbie.com";
}
// -->
</script>
If you're not sure what the document.referrer IS, you can type this in the address bar (it should even work right here, right now...)!
javascript
:alert(document.referrer)
Former
ASP Forum
Moderator - I'm back!
If you can teach yourself how to learn, you can learn anything. ;)
Comment
Post
Cancel
nerdgrrl
New to the CF scene
Join Date:
Jun 2002
Posts:
3
Share
Tweet
#5
Jun 17, 2002, 10:22 PM
Thanks so much! I will give it a try tomorrow!
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
X
Comment