On my website, I utilize pagination to navigate to various event pages. However, search engines are not picking up the conferences on these pages. Take a look at the code snippet below...
<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>
How can I optimize for SEO so that search engines like Google will crawl and index all conference pages?