Açıklama : Dökümanın roott elemanını bulur.
jQuery( ":root" )
Eklendiği Versiyon 1.9
Bir HTML dökümanda $(":root")
seçicisi her zaman <html>
elemanını seçer.
Örnekler:
Root elemanın tag adını göster.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>root demo</title>
<style>
span.fot {
color: red;
font-size: 120%;
font-style: italic;
}
</style>
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
</head>
<body>
<div id="log">The root of this document is: </div>
<script>
$( "<b></b>" ).html( $( ":root" )[ 0 ].nodeName ).appendTo( "#log" );
</script>
</body>
</html>
The root of this document is: