Tagged Questions
1
vote
1answer
21 views
nofollow links on jQuery interaction
Is it important to use rel="nofollow" on jQuery interaction links?
<a href="#" rel="nofollow">jQuery interaction link</a>
0
votes
0answers
22 views
Seo considerations and other considerations for jump links using jquery to make a single page website with hash urls [closed]
I'm making a website with one real url. All the other urls are just /#about, /#contact, etc. I'm using jquery to hide and show the different content. I need to know the considerations of making a site ...
0
votes
0answers
17 views
One Page Website, with jump links, but hide, display:none all other content except jump link clicked [duplicate]
I'm wondering how this website design/structure will work for SEO. I have example.com that I'm building. The only actual URL for the website is example.com. However, it will appear to the user that ...
3
votes
2answers
101 views
Will text that appears dynamically (via javascript/jquery) be indexed by search engines? [duplicate]
Possible Duplicate:
Does the Google spider render JavaScript?
I'm writing an article that is broken up into sections, where the content of each section is hidden unless the user expands ...
0
votes
0answers
18 views
SEO for All-In-One(Page) Templates [duplicate]
Possible Duplicate:
One page website - Effect on SEO
Recently, I developed a JQuery website. It's kind of those websites that shows all pages(logical) in one page(physical), I mean it ...
1
vote
1answer
85 views
When is a page considered loaded by search engines so I can enhance it without a page-speed penalty?
I'm working on a website that has some high quality images that need to load. Of course, my goal is to get the site to load as quickly as possible so we don't slow down the user experience and I don't ...
2
votes
1answer
90 views
If my URL's are static, but then parsed by Javascript, does that make it crawlable?
Lets say I have a link:
<a href="/about/">About Us</a>
But in Javascript [or jQuery] catches it and then adds the hash based off of the href attribute:
$('a').click(function(e) {
...
3
votes
4answers
270 views
SEO optimization for AJAX site and dynamic HTML canvas
I have a site that uses AJAX to query the Last.fm database and then dynamically draws a graph of the results on an HTML canvas. In the search function, I have a command that sets window.location.hash ...
2
votes
1answer
157 views
Will content in a default closed jQuery UI tab still be indexed?
I have a website that has a lot of traffic coming from alt text in images. Right now every image is fully visible on each page. But, I want info, images, and contact as jQuery UI tabs. The info ...
3
votes
1answer
484 views
Effect on SEO of lazy scrolling on HTML comments
I am thinking about using a JS script that lazy loads HTML when scrolling ( http://ivorycity.com/blog/2011/04/19/jquery-lazy-loader-load-html-and-images-on-scroll/).
I am not too sure about whether ...
5
votes
2answers
349 views
Which is better, minified or obfuscated code?
I’m confused between the two. Which is better, especially for jQuery and JS? Also, which do you think is more SEO-friendly? Note: I’m a noob.
0
votes
5answers
625 views
DIsplay none and SEO [duplicate]
Possible Duplicate:
How bad is it to use display: none in CSS?
So i have a nav with tons of stuff and we want to scale back a few of the a tags in the nav but still have them on the page. ...
13
votes
5answers
861 views
pros/cons of hash navigation from SEO perspective
I'm working on an application that implements navigation based on hashchange events. Content is mostly loaded through ajax calls after hash changes (and displayed by DOM injections).
From a SEO ...
3
votes
2answers
440 views
How can I create links in javascript that are crawlable by search engines?
If I use JavaScript + jQuery, for example, does links inserted in $(document).ready() will be available for crawling? How can I insert crawlable links in JavaScript?
