﻿$(document).ready(function() {

$('#myButton1').click(function () {
$('#example1').next().css('color', 'red');
});

$('#myButton2').click(function () {
$('#example2').nextAll().css('color', 'red');
});

$('#myButton3').click(function () {
$('#example3').parent().css('border', 'Red 1px Solid');
});

$('#myButton4').click(function () {
$('#example4').parents('ul').css('border', 'Red 1px Solid');
});

$('#myButton5').click(function () {
$('#example5').siblings().css('color', 'red');
});

$('#myButton6').click(function () {
$('#example6').siblings().andSelf().css('color', 'red');
});

$('#myButton7').click(function () {
$('#example7').siblings().css('color', 'red').end().css('color','green');
});

$('#myButton12').click(function () {
$('#example12').nextUntil(':contains(פריט מספר 4)').css('color', 'red');
});

$('#myButton13').click(function () {
$('#example13').prevUntil(':contains(פריט מספר 4)').css('color', 'red');
});

$('#myButton14').click(function () {
$('#example14').parentsUntil('#my-parent').css('border', 'Red 1px Solid');
});

});
