Connecting Tech Pros Worldwide Forums | Help | Site Map

How do I hide javascript content from googlebot?

Ciaran
Guest
 
Posts: n/a
#1: Jul 28 '07
I have a piece of code that I'd rather google's spider did not follow. Is
this
possible please?




Evertjan.
Guest
 
Posts: n/a
#2: Jul 28 '07

re: How do I hide javascript content from googlebot?


Ciaran wrote on 28 jul 2007 in comp.lang.javascript:
Quote:
I have a piece of code that I'd rather google's spider did not follow.
Is this possible please?
Only link URLs are "FOLLOWED", code is not.

Or do you want it not to be "INDEXED"?

<http://www.google.com/support/webmasters>

Not really on topic for javascript, meseems.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Ciaran
Guest
 
Posts: n/a
#3: Jul 28 '07

re: How do I hide javascript content from googlebot?



"Evertjan." <exjxw.hannivoort@interxnl.netwrote in message
news:Xns997BB67329118eejj99@194.109.133.242...
Quote:
Ciaran wrote on 28 jul 2007 in comp.lang.javascript:
>
Quote:
>I have a piece of code that I'd rather google's spider did not follow.
>Is this possible please?
>
Only link URLs are "FOLLOWED", code is not.
>
Or do you want it not to be "INDEXED"?
>
<http://www.google.com/support/webmasters>
>
Not really on topic for javascript, meseems.
>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Sorry, you're right. I have a bit of javascript code that I dont want to
google to index. Is there a Javascript method to hide this code from the
crawler?
Thanks


Evertjan.
Guest
 
Posts: n/a
#4: Jul 28 '07

re: How do I hide javascript content from googlebot?


Ciaran wrote on 28 jul 2007 in comp.lang.javascript:
Quote:
>
"Evertjan." <exjxw.hannivoort@interxnl.netwrote in message
news:Xns997BB67329118eejj99@194.109.133.242...
Quote:
>Ciaran wrote on 28 jul 2007 in comp.lang.javascript:
>>
Quote:
>>I have a piece of code that I'd rather google's spider did not follow.
>>Is this possible please?
>>
>Only link URLs are "FOLLOWED", code is not.
>>
>Or do you want it not to be "INDEXED"?
>>
><http://www.google.com/support/webmasters>
>>
>Not really on topic for javascript, meseems.
>
Sorry, you're right. I have a bit of javascript code that I dont want to
google to index. Is there a Javascript method to hide this code from the
crawler?
No, not with clientside javascript.

You could test for the word "googlebot" with serverside jscriptin
Request.ServerVariables("HTTP_USER_AGENT"),
but I doubt Google will ever visit your site, if they find out.

Anyhow, why would you want to do that?
Is your scripting so unique and valuable,
that anyone would be interested?

If so, use serverside techniques, which codes are hidden by default.


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Ciaran
Guest
 
Posts: n/a
#5: Jul 29 '07

re: How do I hide javascript content from googlebot?



"Evertjan." <exjxw.hannivoort@interxnl.netwrote in message
news:Xns997BBBDAD11BFeejj99@194.109.133.242...
Quote:
Ciaran wrote on 28 jul 2007 in comp.lang.javascript:
>
Quote:
>>
>"Evertjan." <exjxw.hannivoort@interxnl.netwrote in message
>news:Xns997BB67329118eejj99@194.109.133.242...
Quote:
>>Ciaran wrote on 28 jul 2007 in comp.lang.javascript:
>>>
>>>I have a piece of code that I'd rather google's spider did not follow.
>>>Is this possible please?
>>>
>>Only link URLs are "FOLLOWED", code is not.
>>>
>>Or do you want it not to be "INDEXED"?
>>>
>><http://www.google.com/support/webmasters>
>>>
>>Not really on topic for javascript, meseems.
>>
>Sorry, you're right. I have a bit of javascript code that I dont want to
>google to index. Is there a Javascript method to hide this code from the
>crawler?
>
No, not with clientside javascript.
>
You could test for the word "googlebot" with serverside jscriptin
Request.ServerVariables("HTTP_USER_AGENT"),
but I doubt Google will ever visit your site, if they find out.
>
Anyhow, why would you want to do that?
Is your scripting so unique and valuable,
that anyone would be interested?
>
If so, use serverside techniques, which codes are hidden by default.
>
>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)

Ah yes! Good thinkin - I'll do it with PHP. Thanks!


Bart Van der Donck
Guest
 
Posts: n/a
#6: Jul 29 '07

re: How do I hide javascript content from googlebot?


"Evertjan." wrote:
Quote:
Ciaran wrote:
Quote:
Quote:
>I have a piece of code that I'd rather google's spider did
>not follow.
Quote:
You could test for the word "googlebot" with serverside jscriptin
Request.ServerVariables("HTTP_USER_AGENT"),
but I doubt Google will ever visit your site, if they find out.
You shouldn't do that. The Robots Exclusion Protocol contains widely
accepted rules how to keep crawlers away from your website, or from
some parts of it. Just create a file named "robots.txt" in your
website's root directory.

This "robots.txt"-file keeps all robots out of .js files:

User-agent: *
Disallow: /*.js$

This "robots.txt"-file tells (only) Google to stay away from
directory /javascript/:

User-agent: Googlebot
Disallow: /javascript/

Information:

http://en.wikipedia.org/wiki/Robots_Exclusion_Standard
http://www.google.com/support/webmas...y?answer=33570

--
Bart

Evertjan.
Guest
 
Posts: n/a
#7: Jul 29 '07

re: How do I hide javascript content from googlebot?


Bart Van der Donck wrote on 29 jul 2007 in comp.lang.javascript:
Quote:
"Evertjan." wrote:
>
Quote:
>Ciaran wrote:
>
Quote:
Quote:
>>I have a piece of code that I'd rather google's spider did
>>not follow.
>
Quote:
>You could test for the word "googlebot" with serverside jscriptin
>Request.ServerVariables("HTTP_USER_AGENT"),
>but I doubt Google will ever visit your site, if they find out.
>
You shouldn't do that.
Do what? Ever visit his site when you are Google?
Quote:
The Robots Exclusion Protocol contains widely
accepted rules how to keep crawlers away from your website, or from
some parts of it. Just create a file named "robots.txt" in your
website's root directory.
>
This "robots.txt"-file keeps all robots out of .js files:
>
User-agent: *
Disallow: /*.js$
>
This "robots.txt"-file tells (only) Google to stay away from
directory /javascript/:
>
User-agent: Googlebot
Disallow: /javascript/
>
Information:
>
http://en.wikipedia.org/wiki/Robots_Exclusion_Standard
http://www.google.com/support/webmas...y?answer=33570
My interpretation of "a piece of code" is inHTML code,
not a complete .js file.


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Bart Van der Donck
Guest
 
Posts: n/a
#8: Jul 29 '07

re: How do I hide javascript content from googlebot?


"Evertjan." wrote:
Quote:
Bart Van der Donck wrote on 29 jul 2007 in comp.lang.javascript:
>
Quote:
"Evertjan." wrote:
>
Quote:
Quote:
Ciaran wrote:
>
Quote:
Quote:
>I have a piece of code that I'd rather google's spider did
>not follow.
>
Quote:
Quote:
You could test for the word "googlebot" with serverside jscriptin
Request.ServerVariables("HTTP_USER_AGENT"),
but I doubt Google will ever visit your site, if they find out.
>
Quote:
You shouldn't do that.
>
Do what? Ever visit his site when you are Google?
I think it's better to use robots.txt rather than reading out the UA,
and then decide to (whether or not) output javascript code based on
that info.

The general goal is not clear for me. Crawlers don't do much with
javascript; at best they may detect some hyperlinks to index them. So
what's the use of hiding js code for crawlers ? Preventing the code to
be displayed in search results ? I'ld say a well-programmed crawler
wouldn't do that. Preventing source code to influence algorithms like
PageRank ?
Quote:
My interpretation of "a piece of code" is inHTML code,
not a complete .js file.
When I read the orignal poster's sentence "I have a piece of code that
I'd rather google's spider did not follow", I surmised he meant a a
separate .js file, because that's the only thing a bot could follow.

--
Bart

Ciaran
Guest
 
Posts: n/a
#9: Jul 31 '07

re: How do I hide javascript content from googlebot?



"Bart Van der Donck" <bart@nijlen.comwrote in message
news:1185740271.303898.302910@22g2000hsm.googlegro ups.com...
Quote:
"Evertjan." wrote:
>
Quote:
>Bart Van der Donck wrote on 29 jul 2007 in comp.lang.javascript:
>>
Quote:
"Evertjan." wrote:
>>
Quote:
>Ciaran wrote:
>>
Quote:
>>I have a piece of code that I'd rather google's spider did
>>not follow.
>>
Quote:
>You could test for the word "googlebot" with serverside jscriptin
>Request.ServerVariables("HTTP_USER_AGENT"),
>but I doubt Google will ever visit your site, if they find out.
>>
Quote:
You shouldn't do that.
>>
>Do what? Ever visit his site when you are Google?
>
I think it's better to use robots.txt rather than reading out the UA,
and then decide to (whether or not) output javascript code based on
that info.
>
The general goal is not clear for me. Crawlers don't do much with
javascript; at best they may detect some hyperlinks to index them. So
what's the use of hiding js code for crawlers ? Preventing the code to
be displayed in search results ? I'ld say a well-programmed crawler
wouldn't do that. Preventing source code to influence algorithms like
PageRank ?
>
Quote:
>My interpretation of "a piece of code" is inHTML code,
>not a complete .js file.
>
When I read the orignal poster's sentence "I have a piece of code that
I'd rather google's spider did not follow", I surmised he meant a a
separate .js file, because that's the only thing a bot could follow.
>
--
Bart
>
Hi guys, I've already sorted this out using PHP but to clarify:
I have a JS link that records votes on my site. googlebot was clicking it
and voting over and over so I wanted to hide it. Now hold that thought! I
know I shouldn't be doing stuff like that with javascript but I did it years
ago when I didnt really know what I was doing. It's not a big important
project and I'm far to lazy to go back and change the whole system now.

Thanks for the help!
Ciarán


Closed Thread