var numberOne = $('#mything').children().first();For example to make all children red then the first green:
$('#mything').children().css('background-color', 'red'); $('#mything').children().first().css('background-color', 'green');
var numberOne = $('#mything').children().first();For example to make all children red then the first green:
$('#mything').children().css('background-color', 'red'); $('#mything').children().first().css('background-color', 'green');