Tagged Questions
0
votes
1answer
50 views
What is the syntax for putting a nofollow attribute into a javascript file
Matt Cutts states in this video:
It turns out that as we are executing JavaScript, we do look at the attributes. So you can actually use Javascript and put, like, a nofollow attribute on ...
1
vote
1answer
44 views
Toggling between hidden divs instead of two links
For each entity in my site I have a 'joint' section (~30%), and a sub-section (~70%) which has two different options, meaning I only display ONE of them at a time. Currently I have two different links ...
2
votes
2answers
101 views
Get google to index JavaScript pages as separate pages
I have a product page with say 10 products, that loads up all the content when the page loads. Then JavaScript hides content till a product is selected. Then JavaScript hides and unhides information. ...
3
votes
1answer
479 views
document.referrer from google searches only showing “https://www.google.com”, no search terms
So I put this basic code on my website, and alert with document.referrer:
alert(document.referrer);
And when I do a search the link is:
...
0
votes
0answers
12 views
Javascript widgets: do links count as SEO backlinks? [duplicate]
Possible Duplicate:
How good is it for SEO if you have a widget that lives on other sites?
On my website I offer an option to let users embed information from my site with some kind of ...
4
votes
1answer
376 views
How to SEO Optimize JavaScript Image Loader?
I am building an image-centric catalog website. It catalogs collectible gaming cards numbering 100,000+ pages. There are competitor sites receiving millions of hits each month, so with the possibility ...
3
votes
1answer
382 views
Does loading and executing external javascript have influence on SEO?
Say I have a script that executes after DOM Ready. It loads more resources (like a twitter feed and the like). So, it adds up to the total experience of 'waiting' for the page to load, though it isn't ...
1
vote
0answers
144 views
How to add Google App Script as a gadget to Google Calendar?
I created a small App Script with a small UI. Now I'd like to have it as a gadget in my Google calendar.
I tried to embed a gadget with the following basic XML:
<Module>
<ModulePrefs ...
1
vote
1answer
85 views
Is text in Javascript HMTL scripts taken into account in Google (or other) indexes?
I have a HTML page where I update the content of a div to display some introduction text when displaying the page. It is hard for me to create copies of this page for all possibilities and move the ...
10
votes
1answer
2k views
Is this a good approach to image Lazy Loading for SEO?
For images loaded via AJAX, or that I don't want indexed, use the data-* attribute approach:
<img data-src="path/to/image.jpg" class="js-lazy-load" />
The javascript maps the data-src ...
2
votes
2answers
145 views
Google and random redirects
I have a site where homepage "example.com" redirects to random joke(example.com/random-joke). First I redirected with php, but then google indexed that joke page(rather to be empty). I used "302 ...
3
votes
3answers
225 views
how can I track google plus views in my website?
I am trying to find how I can track google plus clicks in my website for tracking purposes?
Solutions not related to google analytics plse?
3
votes
2answers
913 views
Javascript - Detect if user is coming from a Google Adwords ad
Is it possible to detect if my visitors are coming to my website via a Google Adwords Ad?
It would like to change the telephone number for those users only, that way I can measure the success of my ...
1
vote
1answer
83 views
Bots and scripts [duplicate]
Possible Duplicate:
Will AJAX-fetched material be invisible to search engines?
Can bots understand what's going on in javascript or vbscript? Most of the social networking modules and ad ...
0
votes
1answer
93 views
Encouraging recurrent users to +1 (or Facebook Like)
I want to display a message to users who have visited my site 5 times, but have not yet +1'ed or Like'd to please do so. I guess javascript and a cookie are likely required. But have no idea how to go ...