Within the new mootools-1.2.3.1-more.js are some changes. The $
function has become document.id().
I have the following small code:
document.id('gototop').set('opacity','0').setStyle('display','block');
window.addEvent('scroll',function(e) {document.id('gototop').fade
((window.getScroll().y > 300) ? 'in' : 'out')});
but it doesn't work.
like this and with the old version 1.2 it works very well.
$('gototop').set('opacity','0').setStyle('display','block');
window.addEvent('scroll',function(e) {$('gototop').fade
((window.getScroll().y > 300) ? 'in' : 'out')});
somebody can help?
thx