firstElementChild jquery equivalent

JavaScript
  $('#myList > li:first-child');
// or
$('#myList').children('li:first-child');
// or
$('#myList > li').first();
// or
$('#myList').children().first();
// and so on


Source

Also in JavaScript: