EDIT: My problem was not jQuery.each but innerText ; many thanks Djave!
Yet another question about jQuery.each
jQuery("div").each(function(){
jQuery("p").append("<br/>"+this.id+" "+this.innerText);
});
Expected:
un solo
deux duo
...
Unexpected:
un undefined
deux undefined
Why does chrome get this.innerText while firefox cannot? Is it a bug?
Seems related to latests firefox versions.
Any alternative? Thanks by advance.