var text=[];
$("a").each(function(){ text[text.length]=$(this).text() }) ;
$("h1").each(function(){ text[text.length]=$(this).text() }) ;
$("h2").each(function(){ text[text.length]=$(this).text() }) ;
$("span").each(function(){ text[text.length]=$(this).text() }) ;
console.log(text)