Reputation: 21
My site uses pagination to get to different event pages. The problem is, these conferences on these pages are not getting picked by search engines. Below is my code...
<a href="javascript:;" class="first" title="First" onclick="getCoferencesThisWeek(1)"></a>
<a href="javascript:;" class="prev" title="Previous" onclick="getCoferencesThisWeek(2)"></a>
<a href="javascript:;" class="count" onclick="getCoferencesThisWeek(1)">1</a>
<a href="javascript:;" class="count" onclick="getCoferencesThisWeek(2)">2</a>
What can I do for SEO so Google will crawl and find all of the conferences on the other pages?
Upvotes: 1
Views: 565
Reputation: 943635
javascript:;
.onclick
attributes) so that the JS still has the effect you want.pushState
and friends to update the URL and make the back button work.Upvotes: 1