If the div has the class "yourClass", you can use:
$('div.yourClass').find('select').hide();
If you define a div by id, then it is better to use only id in the selector:
$('#divId').find('select').hide();
You can also save one function call using the " descendant of the descendant " selector:
$('#divId select').hide();
source
share