<!DOCTYPE html>
<html>
<head>
<title>jQuery - Sıralamalı Seçiciler | Serdar YILMAZ</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
// div ile aynı seviyedeki ilk small etiketindeki yazı sağa yatık hale getirildi.
$('div+small').css('font-style', 'italic');
// body etiketinin torunu olan h1 etiketi kırmızı yapıldı.
$('body h1').css('color', 'red');
// ul etiketi içerisindeki bütün li etiketleri alt çizili hale getirildi.
$('ul>li').css('text-decoration', 'underline');
});
</script>
</head>
<body>
<div>
<h1>jQuery Dersleri</h1>
<ul>
<li>jQuery Nedir ?</li>
<li>jQuery Kütüphanesinin Sayfaya Eklenmesi</li>
<li>jQuery Yazım Kuralları</li>
<li>Fonksiyonların Yazım Şekli ve Kullanımı</li>
</ul>
</div>
<small> Kaynak: Srdrylmz.com </small>
<br/>
<small>
<a href='http://www.srdrylmz.com/jquery-dokuman/'>Tüm İçerikleri Görüntülemek İçin Tıklayınız...</a>
</small>
</body>
</html>
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.