Is there a way to use the Ajax Includes Script so that if someone clicks a link, different pages show up in the designated area - like a iframe? I need to use something like an iframe, but don't want to use it because of seo reasons.
Thanks!
Is there a way to use the Ajax Includes Script so that if someone clicks a link, different pages show up in the designated area - like a iframe? I need to use something like an iframe, but don't want to use it because of seo reasons.
Thanks!
Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format for asking a question.
Hmmm, unfortunately no, as the external content is dynamically and directly pasted to your page (similar to SSI), unlike an iframe.
FYI the Ajax script isn't SEO friendly as far as the included content being viewable by search engines. This is because that content as mentioned is dynamically added to the page using the DOM, and physically isn't there (if you view source, that content isn't there).
Thanks. Guess I will go back to the drawing board or figure a seo way of using a iframe.
One way to seo iframe content is to have invisible links on your page to the pages that can potentially be displayed in the iframe. For example:
or:HTML Code:<a href="some.htm" style="display:none;">This Link is actually a page that I sometimes put in an iframe</a>
Another way is to put normal visible code for these links inside the iframe tag's borders:HTML Code:<a href="some.htm" style="text-decoration:none;"> </a>
Browsers that show iframes don't show what is inside there but se's will see it and spider that page as a linked page.HTML Code:<iframe src="some.htm"><a href="some.htm">Link</a></iframe>
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks