Google follows URL from date-href?

2

On my site there are links to certain URLs that are opened with Jquery and the data-href attribute. This attribute is inserted into a normal div that works like a button.

Eg:

<div class="open_url" data-href="http://www.exemplo.com.br">

Does Google typically follow this URL?

    
asked by anonymous 13.03.2016 / 22:04

1 answer

1

data-href is a variable that was created for HTML to be able to trigger Java Script events, so this is extremely normal and no, Google does not follow it as a <a href=""> since it is an attribute of totally different use.

    
14.03.2016 / 03:01