iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Google Discussion Forum Google Discussion forum is for topics specifically related to Google. There is a subforum dedicated to AdSense/AdWords subjects.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-27-2007, 11:47 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default target="_blank" Google Maps

Any idea why when I add target="_blank" to the link code into Google Map
balloons it disappears? I am trying to make it so the links inside the
balloons open in a new window, because it is not ideal to open a page
in the small map window. Not sure if their are many Google Maps pros out there.

Here is the map I created and embedded on my clients website:

Hawaiian Pool Builders Swimming Pool Directory for Ohio and Michigan


Thanks for your help.
Reply With Quote
  #2 (permalink)  
Old 08-28-2007, 12:32 AM
carpediem's Avatar
WebProWorld Pro
 
Join Date: Oct 2006
Location: StudioKraft Creative Services
Posts: 110
carpediem RepRank 3carpediem RepRank 3
Default Re: target="_blank" Google Maps

Hi Incrediblehelp,

Glancing at the code, it looks as though there is a Google Map embedded in an IFRAME on the page. This would require the use of target=”_top” to draw on the parent page, or as you have suggested, target=”_blank” to open another window/tab.


The Google Maps code itself is obfuscated, and is difficult to look through – it appears as though some sort of map generator was used to create it.
Typically, markers are added to maps using the following javascript:

var marker = new GMarker(point);
map.addOverlay(marker);

marker.openInfoWindowHtml(‘<a href=”url” target=”_blank”>Link</a>’);

Where “map” is the Google Map object. The JavaScript code seems to be using arrays to define the points, so there may not be a mechanism built-in to add the target parameter to the link URLs.



Hope that helps!



~D
__________________
MODPlug Central | Free Music Software
StudioKraft | Ecommerce Web Site Development
Reply With Quote
  #3 (permalink)  
Old 08-28-2007, 12:38 AM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Thanks D. Yup I used the new Google My Maps feature and by-passed using the Maps API.
Reply With Quote
  #4 (permalink)  
Old 08-28-2007, 02:01 AM
carpediem's Avatar
WebProWorld Pro
 
Join Date: Oct 2006
Location: StudioKraft Creative Services
Posts: 110
carpediem RepRank 3carpediem RepRank 3
Default Re: target="_blank" Google Maps

I briefly looked through the new MyMaps feature of Google Maps and cannot find any settings or options that allow a target to be set for the links within the map.

I am used to using the Google Maps API which is more flexible than the MyMaps, but obviously much more difficult to use than MyMaps. Depending on the complexity of your map requirements, you may want to look into using the API as opposed to the MyMaps interface.

Failing that, there may be some HTML/JS trick to assign a target to the IFRAME itself. Setting a base target on your main page won't translate to the IFRAME, and the W3C spec does not allow for a target parameter within an IFRAME tag, so offhand I am not sure how to accomplish that, either. Perhaps there is a way to create a JavaScript object from the IFRAME and assign a target to it?

Hope that helps.


~D
__________________
MODPlug Central | Free Music Software
StudioKraft | Ecommerce Web Site Development
Reply With Quote
  #5 (permalink)  
Old 08-28-2007, 02:00 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

D I have looked at the API and was setting the map up this way, but using My Maps is a lot easier, especially for the client to manage. Thanks for your feedback thus far. Any other ideas out there?
Reply With Quote
  #6 (permalink)  
Old 08-28-2007, 02:45 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: target="_blank" Google Maps

I don't suppose you have a link to documentation for creating MyMaps maps do you? I did a few searches but couldn't find anything. Not sure if I need an account first or something.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #7 (permalink)  
Old 08-28-2007, 03:33 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

wige maybe here?

Maps Help
Reply With Quote
  #8 (permalink)  
Old 08-28-2007, 04:48 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: target="_blank" Google Maps

Now why couldn't I find that...

Anyway, I set up a test map and entering the points manually I was able to get it to accept the target="_blank" attribute. However they strip that tag when you log out. I think that this falls into their "suspicious tags" definition. Best thing I can think to try is using a javascript instead.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #9 (permalink)  
Old 08-28-2007, 04:55 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Quote:
Originally Posted by wige View Post
However they strip that tag when you log out. I think that this falls into their "suspicious tags" definition. Best thing I can think to try is using a javascript instead.
Yeah mine was stripped out to. I will play with JavaScript more.
Reply With Quote
  #10 (permalink)  
Old 08-28-2007, 06:58 PM
WebProWorld Veteran
 
Join Date: Jul 2003
Location: Spain
Posts: 343
computergenius RepRank 1
Default Re: target="_blank" Google Maps

I don't know if this is any help to you, but if you look at
Map of Cartama, Malaga, Andalucia
the balloon on the left has a link to another site, which opens in another tab.

The whole page is created from a database.

If there is anything there that you want to use, or need clarification on, please ask.
__________________
Pete Clark
Got any spare time? Anything you need? Barter in Spain at http://BarterWithBart.com

Last edited by computergenius; 08-28-2007 at 06:59 PM. Reason: spelling error
Reply With Quote
  #11 (permalink)  
Old 08-28-2007, 07:07 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Did you use the API or the new My Maps feature? Looks like the API to me. I am trying to figure it out when using the new My Maps feature.
Reply With Quote
  #12 (permalink)  
Old 08-28-2007, 07:42 PM
WebProWorld Veteran
 
Join Date: Jul 2003
Location: Spain
Posts: 343
computergenius RepRank 1
Default Re: target="_blank" Google Maps

Quote:
Originally Posted by incrediblehelp View Post
Did you use the API or the new My Maps feature? Looks like the API to me. I am trying to figure it out when using the new My Maps feature.
Yes, it's the API.

You seem to be determined to do it the hard way (:->

You say "using My Maps is a lot easier, especially for the client to manage" -
what is it that you want the client to be able to do?

And when you say client, I assume that you been the website owner?
__________________
Pete Clark
Got any spare time? Anything you need? Barter in Spain at http://BarterWithBart.com
Reply With Quote
  #13 (permalink)  
Old 08-28-2007, 07:49 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Yeah the website owner, so they add and change balloons, land marks, text and so forth. Maybe I need to look at the API again.
Reply With Quote
  #14 (permalink)  
Old 08-28-2007, 07:54 PM
WebProWorld Veteran
 
Join Date: Jul 2003
Location: Spain
Posts: 343
computergenius RepRank 1
Default Re: target="_blank" Google Maps

I did that somewhere, a project that is "going to be finished one day". I will see what I can find, although I am not sure what the site owner could do - I know that they could slide a balloon around, and activate it, but I am not sure what else.

It works through a control panel page, and changes the data in a SQL database. All my pages on Hot Costa are built from databases.

Would that be any help to you?
__________________
Pete Clark
Got any spare time? Anything you need? Barter in Spain at http://BarterWithBart.com
Reply With Quote
  #15 (permalink)  
Old 08-28-2007, 08:30 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Well I just tried this Javascript method:

Code:
Click here for the <a href="http://www.hawaiianpoolbuilders.com/adrian-pools.html" onclick="return !window.open(this.href);">Adrian, Michgan Swimming Pool</a> page.
and that doesnt work either.
Reply With Quote
  #16 (permalink)  
Old 08-28-2007, 08:33 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Pete mostly so they can edit themselves in the balloons. Don't want anything more "codie" than the My Maps set up or it will be to hard for them to edits on their own.
Reply With Quote
  #17 (permalink)  
Old 08-28-2007, 08:41 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Good thread on this here:

Google Embeddable Maps Issue
Reply With Quote
  #18 (permalink)  
Old 08-28-2007, 08:50 PM
TrafficProducer's Avatar
WebProWorld 1,000+ Club
 
Join Date: Jul 2003
Location: United Kingdom
Posts: 1,638
TrafficProducer RepRank 3TrafficProducer RepRank 3
Default Re: target="_blank" Google Maps

KML is a file format used to display geographic data in an Earth browser, such as Google Earth, Google Maps, and Google Maps for mobile. KML uses a tag-based structure with nested elements and attributes and is based on the XML standard.

GoogleMapBuilder, a spreadsheet-to-map utility. The first DIY tool on the web that allows you to create an interactive Google Map on your website with "point-and-click" ease.

Google Mapplets are mini-applications that you can embed within the Google Maps
Reply With Quote
  #19 (permalink)  
Old 08-28-2007, 08:51 PM
TrafficProducer's Avatar
WebProWorld 1,000+ Club
 
Join Date: Jul 2003
Location: United Kingdom
Posts: 1,638
TrafficProducer RepRank 3TrafficProducer RepRank 3
Default Re: target="_blank" Google Maps

Sorry posted twice, it's late and I off to bed.
Reply With Quote
  #20 (permalink)  
Old 08-29-2007, 04:29 AM
WebProWorld Veteran
 
Join Date: Jul 2003
Location: Spain
Posts: 343
computergenius RepRank 1
Default Re: target="_blank" Google Maps

Quote:
Originally Posted by incrediblehelp View Post
Don't want anything more "codie" than the My Maps set up
I see, you want them to re-code the page(s).

In my solution, they fill in boxes on screen, (like the one that I am filling in now <G>), the pre-written code puts the data into a database, and the page displays information from the database.

Different to what you are doing, obviously.
__________________
Pete Clark
Got any spare time? Anything you need? Barter in Spain at http://BarterWithBart.com
Reply With Quote
  #21 (permalink)  
Old 08-29-2007, 06:28 AM
pagetta's Avatar
WebProWorld Veteran
 
Join Date: Nov 2004
Location: UK
Posts: 509
pagetta RepRank 2
Default Re: target="_blank" Google Maps

I'm not sure if the way you're doing it it would be possible to do this but i added css to my google map to make the text and box smaller so it fitted better on my page as my map was about the same size as yours
Reply With Quote
  #22 (permalink)  
Old 08-29-2007, 09:25 AM
WebProWorld Member
 
Join Date: Oct 2006
Location: Tulsa, OK
Posts: 49
okparrothead RepRank 0
Default Re: target="_blank" Google Maps

Hi all!

Incredible,

I use this jscript to open in a new window:

onclick="this.target='_blank';"

I'm no jscript wizard, so this may not work for you.

Also,

I tried to use the MyMaps function this morning and for the location I was needing, it displayed a different location on google maps site than was displayed using the scriptlet it generated for me. Bogus data somewhere.

I'll try the API.

Peace
__________________
"Contentment is a quality best suited for cows - not cowboys" -- Jimmy Buffet
Reply With Quote
  #23 (permalink)  
Old 08-29-2007, 11:11 AM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: target="_blank" Google Maps

The more I play around with this, including using a few different variations of javascripts, and also after reading through a lot of Google Groups posts on the issue, it seems that Google has put filtering code in to disallow any javascripts or target tags. They seem to filter out automatically when the page is saved, probably to force developers to use the API.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #24 (permalink)  
Old 08-29-2007, 11:13 AM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Yup seeing the same thing wige. Just pretty dumb to be honest for this small feature to not be available as I have found many threads complaining about the same thing.
Reply With Quote
  #25 (permalink)  
Old 08-29-2007, 01:58 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: target="_blank" Google Maps

I don't know about that - actually seems pretty clever to me. It gives the casual user who just wants a simple map on his or her web page with an easy-to-implement solution, while forcing anyone who wants a more complex solution (and is likely to generate more bandwidth and eventually need additional capabilities) to use the API right from the start, where Google can implement more bandwidth controls, and ensure that the developer won't get frustrated in the future when they eventually migrate to the API when they can get frustrated today implementing it now.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #26 (permalink)  
Old 08-29-2007, 02:06 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Yes wige, but most of the average users wont even use the link option in the balloon if it opens in the same iframe window of the map. That is dumb.
Reply With Quote
  #27 (permalink)  
Old 08-29-2007, 03:29 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Aug 2003
Location: Worldwide
Posts: 8,131
Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8
Default Re: target="_blank" Google Maps

Did you already try using this? The Perfect Pop-up (creating accessible pop-up windows) | Tutorials | Accessify
__________________
"Being an expert isn't telling other people what you know. It's understanding what questions to ask, and flexibly applying your knowledge to the specific situation at hand. Being an expert means providing sensible, highly contextual direction." Jeff Atwood
SEO Workers - Search Engine Optimization Consulting Company | SEO Analysis Tool | Webnauts Net SEO
Reply With Quote
  #28 (permalink)  
Old 08-29-2007, 03:57 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

John the main issue that Google is filtering out code when adding it in the balloon.
Reply With Quote
  #29 (permalink)  
Old 08-29-2007, 04:28 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: target="_blank" Google Maps

It seems that the only attribute Google is allowing in a link tag is href, and only keeping the href if it contains a URL. Not only does there seem to be no way to add javascripts, it does not seem possible to add a rel attribute either.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #30 (permalink)  
Old 09-06-2007, 04:06 AM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

I searched everywhere for input or answers from Google on this and nothing. So disappointing.

One thing I did learn that Google Groups is pretty much useless for tough questions.
Reply With Quote
  #31 (permalink)  
Old 09-06-2007, 04:29 AM
Graphix-Effectz's Avatar
WebProWorld New Member
 
Join Date: Sep 2007
Location: West Tennessee
Posts: 2
Graphix-Effectz RepRank 0
Default Re: target="_blank" Google Maps

I dont know if this will help you or not but I use <A HREF="http://your-site.com/ In my Sites for it to use other windows.I dunno if you like to use Java or if you can use it or not..Just thought I'd try..
Reply With Quote
  #32 (permalink)  
Old 09-06-2007, 04:43 AM
Graphix-Effectz's Avatar
WebProWorld New Member
 
Join Date: Sep 2007
Location: West Tennessee
Posts: 2
Graphix-Effectz RepRank 0
Default Re: target="_blank" Google Maps

Well I was gonna offer my solution but it wont save it the way I type it.so if u wanna no how I think it would

work,then feel free to email me. my info is in my profile thru msn messenger..

Last edited by Graphix-Effectz; 09-06-2007 at 04:57 AM. Reason: its not saving it the way i type it.
Reply With Quote
  #33 (permalink)  
Old 09-06-2007, 04:44 AM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Nope as stated above, Google strips out code elements and javascript that I have been trying to add.
Reply With Quote
  #34 (permalink)  
Old 09-06-2007, 11:28 AM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

As first noted at Remote Sensing Tools it seem Google MyMaps balloon links are now opening in a parent window. Yeah for Google as they have fixed their own problem with enough crying from me!
Reply With Quote
  #35 (permalink)  
Old 09-06-2007, 07:44 PM
Webnauts's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Aug 2003
Location: Worldwide
Posts: 8,131
Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8Webnauts RepRank 8
Default Re: target="_blank" Google Maps

Have you been here already? Developer Knowledge Base - Tutorial: Creating Your First Map
__________________
"Being an expert isn't telling other people what you know. It's understanding what questions to ask, and flexibly applying your knowledge to the specific situation at hand. Being an expert means providing sensible, highly contextual direction." Jeff Atwood
SEO Workers - Search Engine Optimization Consulting Company | SEO Analysis Tool | Webnauts Net SEO
Reply With Quote
  #36 (permalink)  
Old 09-07-2007, 07:29 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default Re: target="_blank" Google Maps

Yeah that was more for the API John. This issue was with MyMaps.
Reply With Quote
Reply

  WebProWorld > Search Engines > Google Discussion Forum

Thread Tools
Display Modes

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
When does "similar" = "duplicate content" for Google? zwickes Google Discussion Forum 4 05-31-2007 11:57 AM
Don't Forget To Target "Out-of-context" Leads jmiller Marketing Strategies Discussion Forum 0 10-16-2006 01:39 PM
google: "link to" and "content contains" truelysam Google Discussion Forum 0 12-23-2004 11:49 PM
Is Google "SECRETLY" Using "DirectHit" T ~0 Google Discussion Forum 0 10-22-2004 10:26 PM
Using javascript instead of target="_blank" carbonize Graphics & Design Discussion Forum 1 11-29-2003 08:55 PM


All times are GMT -4. The time now is 11:54 PM.



Search Engine Optimization by vBSEO 3.3.0