jquery find only one level down code example
Example 1: jquery get child div
$(this).children('div').show();
Example 2: find name description jquery children()
{
'name': $(this).children('input[name="paramName"]').val(),
'value': $(this).children('input[name="paramPrice"]').val()
};