jquery get first element value with second element value code example
Example 1: how to select second element in jquery
$("div:eq(1)");
Example 2: select the first elemnt have class in jquery
<script>
// jquery
$( "tr:first" ).css( "font-style", "bold" );
</script>