“jquery братья и сестры” Ответ

jquery братья и сестры

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

jQuery Select Self и братьев и сестер

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

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

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

Ответы похожие на “jquery братья и сестры”

Вопросы похожие на “jquery братья и сестры”

Больше похожих ответов на “jquery братья и сестры” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования