Many aspects of my site are dynamic. I am using jquery.
I have a div which once the DOM is ready is populated using load().
Then if a button is clicked, usin
None of the content loaded via JavaScript will be crawled.
The common and correct approach is to use Progressive Enhancement: all links should be normal to actual pages so that your site "makes sense" to a search spider; and the
click()
event overrides the normal functionality with load()
so normal users with JavaScript enabled will see the "enhanced" version of your site.