So I am planning on dynamically changing a page's content by fetching it from another page. To do so, I used Mootools' Request class:
var tabContent = new Request({ url: ...
I'm using MooTools. I have a ul element:
ul
<ul id="alerts"></ul>
$("alerts")
$("alerts").innerHTML += "<li>word</li>";
for