0

I would like to create a site "A" containing a jQueryUI-Tabset that calls the sites "B,C,D" via Ajax. BUT when someone finds site "B" on Google and calls it - is there a way to force that site "B" isn't displayed independently, but that it is always displayed in the tabset of site "A"?

j0k
  • 22,600
  • 28
  • 79
  • 90
Ralf Glaser
  • 793
  • 1
  • 6
  • 10

1 Answers1

0

First, you have to allow to display tabs by an URL. Quick example from jQuery tools can be found here, you may also find that interesting.

Then on the "B,C,D" pages you must somehow find out if the page is loaded as a tab or as a page. As you have AJAX here, the easiest way will be to check if the page is loaded with AJAX request or not. Then - if not - redirect to the tabbed page and specify the current tab, e.g. /pageA#tabB.

Community
  • 1
  • 1
fracz
  • 20,536
  • 18
  • 103
  • 149