var onglet_actif = 0; // fonction pour montrer un contenu jQuery.fn.montre_onglet = function( selector ) { // click sur un titre if(this.is('.onglets_titre')) { var contenu = '#' + this[0].id.replace(/titre/,'contenu'); var bloc = this.parent().parent(); bloc.children('.selected').removeClass('selected').end() .children('.onglets_liste').children('.selected').removeClass('selected'); jQuery(contenu).addClass('selected'); this.addClass('selected'); } // click sur un titre if(this.is('.onglets_contenu')) { var titre = this[0].id.replace(/contenu/,'titre'); jQuery('#'+titre).montre_onglet(); } return this; }; // compatibilite Ajax : ajouter "this" a "jQuery" pour mieux localiser les actions function onglets_init() { var cs_bloc = jQuery('div.onglets_bloc_initial', this); if(cs_bloc.length) { cs_bloc.prepend('
') .children('.onglets_contenu').each(function(i) { this.id = 'onglets_contenu_' + i; jQuery(this).parent().children('.onglets_liste').append( '

' + this.firstChild.innerHTML + '

' ); }) .children('h2').remove(); jQuery('div.onglets_liste', this).each(function() { this.firstChild.className += ' selected'; this.nextSibling.className += ' selected'; }); jQuery('h2.onglets_titre', this).hover( function(){ jQuery(this).addClass('hover') },function(){ jQuery(this).removeClass('hover') } ); jQuery('div.onglets_bloc_initial', this) .attr('class','onglets_bloc').each(function(i) {this.id = 'ongl_'+i;}); // clic du titre... jQuery('h2.onglets_titre', this).click(function(e) { jQuery(this).montre_onglet(); return false; }); // clic des , au cas ou... jQuery('h2.onglets_titre a', this).click(function(e){ jQuery(this).parents('h2').click(); if (e.stopPropagation) e.stopPropagation(); e.cancelBubble = true; return false; }); // activation d'un onglet grace a l'url if(onglet_get && (this==document)) { sel=jQuery('#onglets_titre_'+onglet_get); sel.click(); } // clic vers une note dans un onglet jQuery('.spip_note['+cs_sel_jQuery+'name^=nb], .spip_note['+cs_sel_jQuery+'id^=nb]').each(function(i) { jQuery(this).click(function(e){ var href = this.href.substring(this.href.lastIndexOf("#")); jQuery(href).parents('.onglets_contenu').eq(0).montre_onglet(); return true; }); }); } } function get_onglet(url) { tab=url.search.match(/[?&]onglet=([0-9]*)/) || url.hash.match(/#onglet([0-9]*)/); if (tab==null) return false; return tab[1]; } var onglet_get = get_onglet(window.location);