SEO and Javascript

This is a discussion on "SEO and Javascript" within the JavaScript Forum section. This forum, and the thread "SEO and Javascript are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 23rd, 2008, 06:39
marSoul's Avatar
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 28
Posts: 411
Blog Entries: 2
Thanks: 3
Thanked 4 Times in 4 Posts
Send a message via MSN to marSoul Send a message via Yahoo to marSoul
SEO and Javascript

Hi

I have created a script that can change text when roll over a link, all i want to know is that will this method seen by search engines or not ?
I mean the texts that will change are in html body, so will it help SEO because instead of using image rollovers i am using text roll overs ?

you can see the example here :
http://www.datisdesign.com
if you roll over the icons on orange area, the texts above it will change

regards
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com

Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
Reply With Quote

  #2 (permalink)  
Old Feb 23rd, 2008, 08:06
Reputable Member
Join Date: Nov 2007
Location: India
Posts: 150
Blog Entries: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: SEO and Javascript

Congratulation on having set up a good homepage. And if you are worried about SEs missing the text, you can use the <NOSCRIPT> tags. Simply place the all the texts inside the no scripr tag.
Last Blog Entry: Cross browser nuisance (Feb 11th, 2008)
Reply With Quote
  #3 (permalink)  
Old Feb 23rd, 2008, 08:30
marSoul's Avatar
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 28
Posts: 411
Blog Entries: 2
Thanks: 3
Thanked 4 Times in 4 Posts
Send a message via MSN to marSoul Send a message via Yahoo to marSoul
Re: SEO and Javascript

Many Thnx
What i meant was this part of the code :

Code: Select all
<ul  id="top_services">
 <li id="web_design" onMouseOver="changetext('main_content_header','Website Design','main_content_text','Nowadays having a website is like having a powerful tool for introducing your skills, abilities, etc. Doesn&acute;t matter if you are an individual or a huge company. Here we guarantee efficiency together with beauty in designing your web pages, giving a pleasure to your mind while viewing the web site.')" onMouseOut="changetext('main_content_header','Designing For Communicating','main_content_text','Communicating plays an important role in today&acute;s world. In this regard internet has gained a very powerful position. Gradually, more and more web sites have appeared on the net, among which only some are able to present the required and expected functions, hence the ability to communicate properly with the users and efficiency are considered as two prominent aspects of a web site. Our main goal here in Datis Design is to satisfy all your needs and expectations in designing your website while using the latest web standards.')"><a href="#" title="Website Design">Web site Design</a></li>
<li id="multimedia_design" onMouseOver="changetext('main_content_header','Multimedia Design','main_content_text','Preparing multimedia presentations for showing your abilities and skills is another useful way for improving and expanding your business.')" onMouseOut="changetext('main_content_header','Designing For Communicating','main_content_text','Communicating plays an important role in today&acute;s world. In this regard internet has gained a very powerful position. Gradually, more and more web sites have appeared on the net, among which only some are able to present the required and expected functions, hence the ability to communicate properly with the users and efficiency are considered as two prominent aspects of a web site. Our main goal here in Datis Design is to satisfy all your needs and expectations in designing your website while using the latest web standards.')"><a href="#" title="Multimedia Design">Multimedia Design</a></li>
<li id="threed_design" onMouseOver="changetext('main_content_header','3D Design','main_content_text','We can also help you to introduce your services, goods, etc by 3D designing here in Datis Design.')" onMouseOut="changetext('main_content_header','Designing For Communicating','main_content_text','Communicating plays an important role in today&acute;s world. In this regard internet has gained a very powerful position. Gradually, more and more web sites have appeared on the net, among which only some are able to present the required and expected functions, hence the ability to communicate properly with the users and efficiency are considered as two prominent aspects of a web site. Our main goal here in Datis Design is to satisfy all your needs and expectations in designing your website while using the latest web standards.')"><a href="#" title="3D Design">3D Design</a></li>
</ul>
I want to know that this method will help SEO or not, changing texts with rollover script that made with javascript ?

thnx again
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com

Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
Reply With Quote
  #4 (permalink)  
Old Feb 23rd, 2008, 09:31
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
Re: SEO and Javascript

the best test is to completely disable javascript. If the navigation is still visible and usable then it will be ok.
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
Reply With Quote
  #5 (permalink)  
Old Feb 23rd, 2008, 10:48
marSoul's Avatar
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 28
Posts: 411
Blog Entries: 2
Thanks: 3
Thanked 4 Times in 4 Posts
Send a message via MSN to marSoul Send a message via Yahoo to marSoul
Re: SEO and Javascript

when i disable javascript the texts wont change, so it is not seen by search engines ?
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com

Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
Reply With Quote
  #6 (permalink)  
Old Feb 23rd, 2008, 10:54
Jack Franklin's Avatar
Resources Administrator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,268
Blog Entries: 7
Thanks: 10
Thanked 4 Times in 4 Posts
Re: SEO and Javascript

marSoul - you could do it with CSS so then it will work 100% for sure.

Check this blog post which might help you out.
Last Blog Entry: My Latest Project - Grilling Gurus... (Jun 11th, 2008)
Reply With Quote
  #7 (permalink)  
Old Feb 23rd, 2008, 11:02
marSoul's Avatar
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 28
Posts: 411
Blog Entries: 2
Thanks: 3
Thanked 4 Times in 4 Posts
Send a message via MSN to marSoul Send a message via Yahoo to marSoul
Re: SEO and Javascript

Thanks for the tip, All i need to know is will this method help seo or not ? just to make sure this javascript code wont ruin seo !
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com

Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
Reply With Quote
  #8 (permalink)  
Old Feb 23rd, 2008, 11:09
Jack Franklin's Avatar
Resources Administrator

SuperMember
Join Date: May 2007
Location: Cornwall, England
Posts: 1,268
Blog Entries: 7
Thanks: 10
Thanked 4 Times in 4 Posts
Re: SEO and Javascript

I dont think it would personally. Why not try getting in touch with Google?
Last Blog Entry: My Latest Project - Grilling Gurus... (Jun 11th, 2008)
Reply With Quote
  #9 (permalink)  
Old Feb 23rd, 2008, 14:52
marSoul's Avatar
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 28
Posts: 411
Blog Entries: 2
Thanks: 3
Thanked 4 Times in 4 Posts
Send a message via MSN to marSoul Send a message via Yahoo to marSoul
Re: SEO and Javascript

how can i do that ?
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com

Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
Reply With Quote
  #10 (permalink)  
Old Feb 23rd, 2008, 15:53
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
Re: SEO and Javascript

This wont harm SEO at all. it's a hover effect and the replacement text is completly invisible to google because it's javascript. I personally would not worry at all

As it's a hover effect, it cant be considered cloaking.
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
Reply With Quote
  #11 (permalink)  
Old Feb 23rd, 2008, 16:41
marSoul's Avatar
Moderator
Join Date: Sep 2007
Location: Tehran - Iran
Age: 28
Posts: 411
Blog Entries: 2
Thanks: 3
Thanked 4 Times in 4 Posts
Send a message via MSN to marSoul Send a message via Yahoo to marSoul
Re: SEO and Javascript

If the texts cant be seen by google, so it is not a good way for SEO, right ?
I thought div contents can be seen by google !
__________________
Designing For Communicating
Website : http://www.datisdesign.com
Weblog : http://blog.datisdesign.com

Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
Reply With Quote
  #12 (permalink)  
Old Feb 23rd, 2008, 17:11
Junior Member
Join Date: Jul 2007
Location: Los Angeles
Age: 31
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Re: SEO and Javascript

A good practice is view your website in a Lynx (text only) browser which will give you a better idea of how a spider will view your page. You can either download the browser or use an online tool like:

http://www.rankquest.com/tools/Lynx-...www.google.com
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
php and javascript yvettesio JavaScript Forum 8 Mar 14th, 2007 23:18
JavaScript cbrams9 JavaScript Forum 1 Sep 20th, 2006 17:35
using xml in javascript shailu JavaScript Forum 0 Jul 25th, 2006 07:36
Can someone help me with this javascript Galaxyblue JavaScript Forum 2 Mar 11th, 2004 12:18
what does \\ mean in javascript jenjen1018 JavaScript Forum 5 Jan 6th, 2004 17:05


All times are GMT. The time now is 01:13.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43