Discuss Hyperlink Coding in the Google Optimization forum on SEO Chat. Hyperlink Coding Google Optimization forum discussing techniques to increase rank in Google. Find help for defeating spam pages, building site trust, and beating the Google algorithm. Also read about the best SEO tools to help with Google search.
BuySellLinks.com is a new Text Link Advertising Brokerage by the founder of LinkAdage that offers high-end text links and a premier membership base. We screen all advertisers and publishers and their web pages to make sure we are offering a service that works for everyone. Our plug-in is super easy to install but if you are hands off, w e offer free installation.
Tired of dealing with shady text link buyers and/or sellers? Try BuySellLinks.
Receive the tools necessary to be the rock star of your field. Our 12-month program teaches you the evolving world of multi-channel marketing as well as the complex issues and opportunities found in the industry.
Posts: 13
Time spent in forums: 5 h 20 m 49 sec
Reputation Power: 0
Hyperlink Coding
Can anyone give me some coding that opens a hyperlink from one site to another but the new site landing page must open on a full page. Not using javascript that is google friendly !
Posts: 3,949
Time spent in forums: 2 Months 3 Weeks 1 Day 13 h 28 m 16 sec
Reputation Power: 833
You cannot control the size of a new page/tab/window that opens without using javascript. That's because the html code will just open a new tab/window of the same size as the current one.
But - to open a link into a new window or tab - you can specify a target attribute like so:
<a href="...whatever..." target="_blank" > Click here :-) </a>
Best thing you can do is ask the visitor to hit the [F11] key
Posts: 3,652
Time spent in forums: 2 Weeks 6 Days 18 h 17 m 8 sec
Reputation Power: 463
The issue is not whetter Google will like it or not.
Google will read that just fine. What it won't do is pass any weight or page rank to that page.
I have done a test recently (view the testing section in this forum) that showed that Google can read javascript in the form of
Code:
document.write("<h1>Markup Here</h1>");
and even some basic Javascript links.
Depending on what you want your page to do, you could link the page to another page on your site that loaded some javascript which resized tha page onload and then redirected the user to the refering site. Although if you are not bother about it being indexed (hence the nofollow) then I can't see why you wouldn't do that with a javascript link.