| Google Forum Discuss Google related issues. |
10-20-2003, 11:27 AM
|
#21 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
Google has 12 URLs indexed for the site, most of which don't exist - a previous incarnation? www.1001onlinegames.com/get.media?t=n is the only one that Google has a 404 for, but it doesn't exist either.
I'll get back to you on the Javascript auto-click thing - I'm not sure that I can find an example. It's easy to make one but I saw a much smoother rendition a while back. In the meantime, you could try searching Google for "javascript auto-click" or something like that.
|
|
|
10-20-2003, 02:29 PM
|
#22 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
I haven't been able to find anything yet. I'm not sure what you mean by auto-click either.
|
|
|
10-20-2003, 02:51 PM
|
#23 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
It's a technique whereby as soon as the page loads one of the links in the page is clicked on. It's necessary with auto-redirecting pages if you want to pass the referer in IE to the receiving site, but only necessary if the page auto-redirects.
It's probably not something that would be useful to you. Normal user clicks on javascript links should pass the referer.
|
|
|
10-21-2003, 12:15 AM
|
#24 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Maybe it's the combination of javascript and my link tracker.
|
|
|
10-21-2003, 12:56 AM
|
#25 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Hmm no that's not it..
|
|
|
10-21-2003, 01:06 PM
|
#26 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Found something yet, Phil?
|
|
|
10-21-2003, 02:15 PM
|
#27 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
I'd assumed that it would suit your needs, but it is:-
[code:1:50f784a9af]<a href="http://www.domain.com/" id=clk name=clk>link text</a>
<script language=javascript>
if(navigator.appVersion.indexOf('MSIE') >= 0){
clk.click();
}else{
top.location.replace('http://www.domain.com/');
}
</script>
[/code:1:50f784a9af]
If it's an IE browser, it auto-click's. If not, it does the normal auto-redirect.
|
|
|
10-22-2003, 03:48 AM
|
#28 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Thanks. Though, I'm unsure if I can use it for this problem.
If I'd exchange the javascript links for a link tracker, like 1001onlinegames.com/t.pl? http://www.domain, would I loose PR to those links?
|
|
|
10-22-2003, 04:04 AM
|
#29 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
Yes.
|
|
|
10-22-2003, 04:06 AM
|
#30 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Shit.
A dilemma
Edit: Nice, a bad word filter 
|
|
|
10-22-2003, 04:38 AM
|
#31 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
How about this.
[code:1:7540ae5d66]<head>
<script language="javascript"><!--
function go(url){
location.href=url
}
//-->
</script>
</head>
<body>
<a href="javascript:go('http://www.whatever.com/')">link text</a>
[/code:1:7540ae5d66]
Clicking on Javascript links should pass the referer. Try the above and see if that passes it for you. If not, maybe you could create a convoluted combination of the above and the auto-click.
|
|
|
10-22-2003, 04:57 AM
|
#32 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
That does not pass the referer either.
I'm no Javascript expert but I'll try to combine those 2 scripts.
I'll be back.
|
|
|
10-22-2003, 05:41 AM
|
#33 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
Right. I have the solution...
[code:1:7cd83e0730]<head>
<script language="javascript"><!--
function go(url){
if(navigator.appVersion.indexOf('MSIE') >= 0){
clk.href=url
clk.click();
}else{
location.href=url;
}
}
//-->
</script>
</head>
<body>
<a href="javascript:go('http://www.whatever....')">Click here</a>
<p>
<a id=clk name=clk></a>
[/code:1:7cd83e0730]
I've checked it and it does pass the referer.
The clickable link (the one with the link text) calls the go() function, which checks for IE. If it's IE, then it sets the other anchor's href to the target URL and then clicks it. If it isn't IE, it just relocates the user to the target URL. The 'other' anchor can't be seen because it has no link text.
|
|
|
10-22-2003, 06:02 AM
|
#34 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Very nice. But that does mean that I will have to create a seperate script for each outbound link, right?
|
|
|
10-22-2003, 06:14 AM
|
#35 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
No no no no no! That's the reason that I made it write the URL to the 'blind' anchor.
You only need the blind anchor once on the page, and you only need the 'go' script once on the page. After that you can have as many links as you like, as long as each one passes its target URL to the 'go' script.
|
|
|
10-22-2003, 06:18 AM
|
#36 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Ah sorry, I must've missunderstood then. Going to give it a test run right now!
|
|
|
10-22-2003, 06:43 AM
|
#37 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
Works like a charm, including referers. Thanks a lot Phil, this is a keeper 
|
|
|
10-22-2003, 06:57 AM
|
#38 (permalink)
|
|
Crap Bag
Join Date: 10-12-03
Posts: 1,727
Latest Blog: None
|
My pleasure, Rob 
|
|
|
10-26-2003, 12:26 PM
|
#39 (permalink)
|
|
Inactive
Join Date: 10-13-03
Location: NL
Posts: 317
Latest Blog: None
|
I now officially have a PR of zero, null, nothing.
Poo!
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Similar Threads
|
| Thread |
Thread Starter |
Forum |
Replies |
Last Post |
| Google Cache Problem |
webexpertz |
SEO Forum |
31 |
10-30-2006 11:49 AM |
| Google Cache??? |
FGTH |
Google Forum |
7 |
01-25-2006 01:16 PM |
| Google Cache |
awall19s brother |
Google Forum |
4 |
01-26-2005 10:15 AM |
| Cache Problem |
Shawn |
V7N Directory Issues |
0 |
12-01-2004 11:40 PM |
All times are GMT -7. The time now is 07:02 PM.
© Copyright 2008 V7 Inc
|