[jQuery] Re: jquery tabs ajax mode

2009-01-29 Thread m.ugues

Sorry for the OT.

I have this example:



MOVIMENTI
DETTAGLIO SALDO
BONUS









I would like to load every tab content (movimenti.htm/
dettaglio_saldo.htm) in the iframe contained in the div container.

I tried like this as described above:

   $tabs = jQuery("#example > ul").tabs();

$("#tabs a").click(function() {
$.get( $(this).attr("href"), function(data) {
$("#iframeContained")[0].contentDocument.body.innerHTML 
= data;
  });
  return false;
});

But this is not working.
Here you can find this test case.

http://m4zi.ucoz.com/tabs/containerTabs.htm

Any suggstion?

Kind regards

Massimo

On Jan 29, 1:10 pm, Klaus Hartl  wrote:
> Well, with Tabs 2 you could actually do:
>
> $('#box').tabs({ remote: true });
>
> --Klaus
>
> On 29 Jan., 13:08, jampov  wrote:
>
> > I love you stepahn. A million thanks.


[jQuery] Re: jquery tabs ajax mode

2009-01-29 Thread Klaus Hartl

Well, with Tabs 2 you could actually do:

$('#box').tabs({ remote: true });

--Klaus



On 29 Jan., 13:08, jampov  wrote:
> I love you stepahn. A million thanks.


[jQuery] Re: jquery tabs ajax mode

2009-01-29 Thread jampov

I love you stepahn. A million thanks.


[jQuery] Re: jquery tabs ajax mode

2009-01-29 Thread Stephan Veigl

$("#tabs a").click(function() {
  $.get( $(this).attr("href"), function(data) {
$("#contaioner").html(data);
  });
  return false;
});


see also:
http://docs.jquery.com/Ajax

and (since I guess you are German speaking):
http://www.ajax-community.de/javascript/5951-jquery-ajax-ergebnis-ins-dom-laden.html

by(e)
Stephan


2009/1/29 jampov :
>
> Hello. I need some help with tabs jQuery v2.7.4 of stilbuero.
> I want to use Ajax Mode and open the links in a given container. For
> example:
>
> 
>
>Tab one
>Tab two
>Tab three
>
> 
> ...
> 
>
>
> Can you tell me how to do it?
> Sorry for my bad English.
> A greeting.