This one might be close to the question asked here but sightly different
Are search engines going to see my dynamically created content in Bootstrap tabs?
At a high level, these are three types of ways I could think of adding content/links to page 1. Initial:- links/content available in downloaded html markup which server sends to client. 2. OnLoad:- As part of onload, content can be fetched from a rest service and included in dom. 3. On user action:- When user click on a tab content/links will be fetched from server.
From above thread, these cases are confirmed
In case 1(Initial), Content will be indexed by googlebot but hidden content will get less weightage.
In case 3(on user action) it was clearly answered that googlebot will not know about content/links which are lazily loaded on click and hence can't follow or index links/content.
Questions on hidden links/content:
In case 1(Initial), if I have links which are hidden(display:none), Can googlebot still follow those links and index them?
In case 2(on Load), will it follow both hidden and visible links and index them?
In case 2(on load), can I assume that googlebot indexes the hidden content?