jquery find specific child element code example
Example 1: jquery get child div
$(this).children('div').show();
Example 2: find class using jquery
var myVar = $("#start").find('.myClass').val();
$(this).children('div').show();
var myVar = $("#start").find('.myClass').val();