<ul>
<li>item-1</li>
<li>item-2</li>
<li>item-3</li>
<li>item-4</li>
<li>item-5</li>
<li>item-6</li>
<li>item-7</li>
<li>item-8</li>
</ul>
$('li').eq(3)
.siblings()
.css('color', 'red')
.andSelf()
.css('background', 'green');
.andSelf() ... deprecated: 1.8, removed: 3.0https://api.jquery.com/andself/
$('li')
.eq(3)
.css('background', 'green')
.siblings()
.css('color', 'red')