Forum Moderators: Robert Charlton & goodroi
Hopefully a simple backlink question! I approached a client about using a review on their site, the idea being it would link to my site to serve the review, producing a backlink. Win win.
However, because I also present one of his key competitors, he doesn't want to send a visitor to my site, but has said that if i can serve it within his page or as an user-induced popup, with no links to my homepage, he'll do it.
Question is...how do i make that happen maintaining an Google backlink benefit? Javascript popups or <iframes> have sprung to mind but a) I'm not sure a javascript popup is googlised and b) an iframe has no anchor, even if it was to be counted as a backlink.
The only other idea I have is to brand the review per his website and serve it as a natural link, but he wasn't over-keen on this as he has a large but carefully planned dynamic navigation system which is fine-tuned and would be hard to implement, yet alone maintain, on my side. It is still a possibility (serving a "back to..." link) but if there is a better solution out there...!
Anyone have any suggestions as to a beneficial solution?
Cheers
Simsi
Google does (finally) crawl the iframe src= attribute, but I can't see evidence that it gets the same handling as a link -- although to my thinking it should, because a link that targets the same iframe to change its document WOULD count.
Sounds like iframe isn't the best way then. Does Google crawl javascript links as in:
<a href="javascript:window.open('etc')">widget</a>
or is there a better way to do this?
Here's the best of both worlds:
<a href="page.html" onclick="window.open('etc');return false;">widget</a>
The "return false" keeps the main window from reloading if the user agent has javascript enabled.