jquery select class first child code example
Example 1: select the first elemnt have class in jquery
$( ".box" ).first().css( "font-style", "bold" );
Example 2: jquery first child
$('div:first-child')
$( ".box" ).first().css( "font-style", "bold" );
$('div:first-child')