find class inside another class jquery code example
Example 1: find class using jquery
var myVar = $("#start").find('.myClass').val();
Example 2: jquery select element inside element
$("#moo") > $("#foo #moo") > $("div#foo span#moo") > $("#foo span") > $("#foo > #moo")