Created
January 6, 2015 06:51
-
-
Save sabrinaluo/6779c0760d800504615c to your computer and use it in GitHub Desktop.
jquery first child
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<p>123</p> | |
<p>321</p> | |
<p>456</p> | |
<p>789</p> | |
</div> | |
<script> | |
$("div p:first-child") //return <p>123</p> | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment