Código HTML:
Ver original
<ul class="tabs"> </ul> </div> <div class="tabs_content_container"> <div id="tab1" class="tab_content" style="display: block;"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum nibh urna, euismod ut ornare non, volutpat vel tortor. Integer laoreet placerat suscipit. Sed sodales scelerisque commodo. Nam porta cursus lectus. Proin nunc erat, gravida a facilisis quis, ornare id lectus. Proin consectetur nibh quis urna gravida mollis.</p> </div> <div id="tab2" class="tab_content"> </div> <div id="tab3" class="tab_content"> </div>
& jquery
Código Javascript:
Ver original
$(document).ready(function(){ // When user clicks on tab, this code will be executed $(".tabs li").click(function() { // First remove class "active" from currently active tab $(".tabs li").removeClass('active'); // Now add class "active" to the selected/clicked tab $(this).addClass("active"); // Hide all tab content $(".tab_content").hide(); // Here we get the href value of the selected tab var selected_tab = $(this).find("a").attr("href"); // Show the selected tab content $(selected_tab).fadeIn(); // At the end, we add return false so that the click on the link is not executed return false; }); });
fuente
http://www.lessthanweb.com/demo/simple-css-tabs-with-jquery/index.html
mi broblema es que yo coloco varios del codigo del primer bloque
funciona bien con uno solo.
pero si pongo el html 2 veces para tener 2 juegos de tabs
el primero funciona mas no el segundo
y cuando presiono los tambas del segundo el efecto lo hace en el primero
no s e como solucionarlo gracias
atodo aquel q quiera echarme una mano
salusos