I agree with @Jakub Arnold's answer. The problem should be somewhere else. I could not figure out the problem but found a work around.
Wrap your concerned element with a parent element and cause its html to create a new element with the id you are concerned with. See below
<div id="theParent">
<div id="vinanghinguyen_images_bbocde"></div>
</div>
'onSelect' : function(event,ID,fileObj) {
$("#theParent").html("<div id='vinanghinguyen_images_bbocde'></div>");
$("#vinanghinguyen_result").hide();
$(".uploadifyQueue").height(315);
}