given the following
$(\"#identifier div:first, #idetifier2\").fadeOut(300,function() { // I need to reference just the \'#identifier div:first\' element
Just check about which ID you're currently processing in $(this)
$(this)
if(this.id == "identifier"){ //your code goes here }