Thank you very much Karl, that worked perfectly!

Daniel

On 7 sep, 11:22, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> You need to ajaxify those links after the content has been loaded:
>
> $(function() {
>     $('#example').tabs({
>         load: function(e, ui) {
>             $('a', ui.panel).click(function() {
>                 $(ui.panel).load(this.href);
>                 return false;
>             });
>         }
>     });
>
> });
>
> --Klaus
>
> On Sep 1, 12:52 pm,DanielBeard<[EMAIL PROTECTED]> wrote:
>
> > Hi everyone,
>
> > I am using jQuery UItabsversion 3.0. I am calling thetabscontent
> > via Ajax, but the links inside thetabsdon't open inside thetabs,
> > instead they load into a new page. Is there any way to make my links
> > load via Ajax into the current tab?
>
> > Thanks,
>
> >Daniel

Reply via email to