mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
19 lines
445 B
HTML
19 lines
445 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>find demo</title>
|
|
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT" crossorigin="anonymous"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<p><span>Hello</span>, how are you?</p>
|
|
<p>Me? I'm <span>good</span>.</p>
|
|
|
|
<script>
|
|
$( "p" ).find( "span" ).css( "color", "red" );
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|