Mobile app version of vmapp.org
Login or Join
Correia994

: Does Googlebot trigger onclick events and index the resulting content? I've found many topics about Googlebot following links and executing ajax queries but none that tell me whether onclick events

@Correia994

Posted in: #Google #Googlebot #Javascript #Seo

I've found many topics about Googlebot following links and executing ajax queries but none that tell me whether onclick events would get triggered and results crawled.

Let's say that an image is loaded when another element on the page is clicked:

<img src="#" data-src="path/to/image.jpg">
<span onclick=" this.previousElementSibling.src = this.previousElementSibling.dataset.src; ">click</span>


I would like to know if this image would get crawled by Googlebot.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Correia994

1 Comments

Sorted by latest first Latest Oldest Best

 

@Bryan171

Historically, SEO recommendations have centered around having ‘plain text’ content whenever possible. Dynamically generated content, AJAX, and JavaScript links have been a detriment to SEO for the major search engines. Clearly, that is no longer the case for Google. Javascript links work in a similar manner to plain HTML links (at face value, we do not know what’s happening behind the scenes in the algorithms).

You can see whole testing here.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme