Wrap text
Report abuse
|
|
document.observe('contentloaded', function(){
add_history();
alert('ok');
});
function add_history(){
var history = document.createElement('a');
history.id = 'history';
$('navigation').appendChild(history);
$('history').setAttribute('href','javascript:history.back()');
$('history').innerHTML = 'Back';
}
|