“Irmãos JQuery” Respostas de código

Irmãos JQuery

$( "li.third-item" ).siblings().css( "background-color", "red" );
LeisureSuit Larry

JQuery Select Self e irmãos

$(this).siblings().addBack()
Lonely Curly Boi

Irmão JQuery

// Sibling with class name 
$(this).next( ".someClassNameOfSibiling" ).css( "display", "none" );

// Full code for for h3 element on click 
// hide the sibling div element
$(document).ready(function(){ 
  $("h3").on("click",function() {
    $(this).next( "div" ).css( "display", "none" );   
  })
});
Muthukumar

Irmãos JQuery

//siblings()
$(document).ready(function(){
  $("h2").siblings();
});

//next()
$(document).ready(function(){
  $("h2").next();
});

//nextAll()
$(document).ready(function(){
  $("h2").nextAll();
});

//nextUntil()
$(document).ready(function(){
  $("h2").nextUntil("h6");
});




naly moslih

Respostas semelhantes a “Irmãos JQuery”

Perguntas semelhantes a “Irmãos JQuery”

Mais respostas relacionadas para “Irmãos JQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código