Skip to content

Instantly share code, notes, and snippets.

@sabrinaluo
Created January 6, 2015 06:51
Show Gist options
  • Save sabrinaluo/6779c0760d800504615c to your computer and use it in GitHub Desktop.
Save sabrinaluo/6779c0760d800504615c to your computer and use it in GitHub Desktop.
jquery first child
<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