Sono un ignorante crasso di dom e js, ma devo per necessità estrema ricorrere alla Google Feed Api. Recuperato il feed lo devo restituire con questo output per ragioni di css: <span style="font-family: courier new,monospace;"><br>

<br>&lt;span&gt;mese anno&lt;/span&gt;&lt;a href=&quot;link&quot;&gt;Titolo&lt;/a&gt;</span><br> <br>Ho scritto<br><br><span style="font-family: courier new,monospace;">var entry = result.feed.entries[i];</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            var div = document.createElement(&quot;div&quot;);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            var link1 = document.createElement(&#39;a&#39;);</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            var li = document.createElement(&#39;li&#39;);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            var span = document.createElement(&#39;span&#39;);</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">        </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            var data = new Date(entry.publishedDate);</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            var data1 = data.getMonth() + &#39; &#39; + data.getFullYear();</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">                       </span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            link1.appendChild(document.createTextNode(entry.title));</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            link1.setAttribute(&#39;href&#39;, entry.link);</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">        </span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            span.appendChild(document.createTextNode(data1));</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            span.appendChild(link1)</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">            li.appendChild(span)</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            div.appendChild(li)</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">                             </span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">            container.appendChild(div);</span><br>

<br>ottengo ovviamente questo<br><span style="font-family: courier new,monospace;">&lt;span xmlns=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;&gt;2 2011&lt;a href=&quot;<a href="http://issuu.com/thinkquarterly/docs/01-data/1">http://issuu.com/thinkquarterly/docs/01-data/1</a>&quot;&gt;Think Quarterly - 01 Data&lt;/a&gt;&lt;/span&gt;</span><br>

<br>invece vorrei ottenere questo<br><span style="font-family: courier new,monospace;">&lt;span xmlns=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;&gt;2 2011&lt;/span&gt;&lt;a href=&quot;<a href="http://issuu.com/thinkquarterly/docs/01-data/1">http://issuu.com/thinkquarterly/docs/01-data/1</a>&quot;&gt;Think Quarterly - 01 Data&lt;/a&gt;</span><br>

<br>C&#39;è qualche anima pia che mi può aiutare? So che è una cosa banale, ma non ci riesco... e sto perdendoci ore!<br><br>Grazie!<br><br>E.<br>