I have a funciton that I am currently using to show a hidden div.a_type
How can I modify this code so that instead of fading in the hidden div, I can add the new div to the DOM
jQuery(function(){ // Add Answer
jQuery(".add_answer").click(function(){
if(count >= "4"){
alert('Only 4 Answers Allowed');
}else{
var count = $(this).attr("alt");
count++;
$(this).parents('div:first').find('.a_type_'+count+'').fadeIn();
$(this).attr("alt", count);
}
});
});