SEO test asset

JavaScript SEO checklist

A prelaunch checklist for teams comparing initial HTML, rendered HTML, crawlable links, JavaScript routes, lazy content, blocked resources, and fallback decisions.

prelaunch JavaScript SEO QA

Focus areas

Initial HTML first

Confirm critical metadata, content, links, routes, and render resources are visible or intentionally remediated.

1. Compare source HTML against rendered HTML

  1. Check whether the initial HTML contains meaningful body text instead of only an empty app shell.
  2. Confirm the initial HTML includes a non-empty title and meta description before JavaScript runs.
  3. Compare the rendered H1, primary copy, product details, pricing, review snippets, and internal links against source HTML.
  4. Record every critical element that appears only after hydration, client routing, click, scroll, or delayed rendering.

2. Check crawlable links and route patterns

  1. Prefer real anchors with crawlable `href` values for navigation and discovery paths.
  2. Flag `onclick`, `javascript:`, button-only navigation, load-more controls, and fragment-only links.
  3. Review hash routes such as `#/products` and decide whether distinct crawlable URLs or pre-rendered route snapshots are needed.
  4. Make sure category, product, docs, locale, and paginated routes can be discovered without a user action.

3. Review lazy content and blocked resources

  1. Flag critical text, images, reviews, recommendations, tabs, or accordions that require click or scroll to load.
  2. Check `data-src`, IntersectionObserver, delayed imports, and component-level lazy-loading for above-the-fold content.
  3. Confirm `robots.txt`, CDN rules, WAF rules, and auth-like user-agent filters do not block JS, CSS, chunks, fonts, or required render resources.
  4. Capture remediation ownership: frontend, SEO, platform, CDN, content, or migration owner.

4. Owner handoff template

JavaScript SEO QA handoff

URL or route:
Template type:
Initial HTML issue:
Rendered-only content:
Crawlable link issue:
Hash/fragment route issue:
Lazy/user-action issue:
Blocked JS/CSS/resource issue:
Required fallback:
Owner:
Decision:
Retest date:

JavaScript Rendering QA Briefs turns pasted samples into this owner-ready handoff. It is not a crawler, Search Console replacement, Googlebot emulator, or ranking guarantee.

5. Quick risk matrix

Risk Signal Default action
High Empty app shell plus missing title/meta in initial HTML. Add SSR, pre-rendering, static fallback, or source metadata before launch.
High JS-only navigation or button-only route discovery. Replace with crawlable anchors and real route URLs.
Medium Hash routes, fragment-only states, or tabs that represent distinct content. Define canonical route strategy and decide what should be indexable.
Medium Lazy content, data-src media, click-to-load reviews, or blocked chunks. Move critical content into initial/rendered visible HTML and unblock render resources.
Lower Initial HTML contains critical content, crawlable hrefs, and explicit remediation owners. Run final crawler/Search Console validation when access is available.