MooTools image
An example on how to create an element with Mootools.
<script>
var imageElement = new Element('img',{
'src':'1.jpg',
'alt': 'Mootools image',
'width':70,
'height':70
}).inject($('box'));
</script> <div id='box'></div>
<script>
var imageElement = new Element('img',{
'src':'1.jpg',
'alt': 'Mootools image',
'width':70,
'height':70
}).inject($('box'));
</script> <div id='box'></div>