I've got a page where I'm using Mootools 1.2.4 and MediaboxAdvanced as a lightbox. I can't seem to get the thing working because of a particular javascript error

document.body is null

at the initialization of Mediabox:

$(document.body).adopt(
     $$([
          overlay = new Element("div", {id: "mbOverlay"}).addEvent("click", close),
          center = new Element("div", {id: "mbCenter"})
     ]).setStyle("display", "none")
); 

The page is here. If yo uclick on the guy's name, picture, or the More Info button on the bottom right, it is supposed to launch the Mediabox. Via Firebug, I have confirmed that the CSS is loading, mootools is loading, and the Mediabox script is loading; all the paths to images and everything are correct as well.

Any ideas?

link|improve this question

74% accept rate
sorry about my dead-wrong answer :-) I've deleted it. – Pointy Mar 2 '10 at 14:15
I don't get that error. I get two others, though: unterminated parenthetical in mootools.js (line 67) and Accordion is not defined in mootools-accordion.js (line 7). – MikeWyatt Mar 2 '10 at 14:17
1  
same - you need to load mootools-more (get it from mootools.net/more ), enable FX.accordion and it will auto-enable the dependencies you require. – Dimitar Christoff Mar 2 '10 at 15:18
Nice! Thanks! Cleared up that error just like you said! – Honus Wagner Mar 2 '10 at 18:40
feedback

1 Answer

up vote 1 down vote accepted

You may only be able to use $ on an element returned from getElementById. A simple workaround is to instead use $$.

$$('body')[0].adopt...
link|improve this answer
Brilliant! Thanks so much! – Honus Wagner Mar 2 '10 at 14:38
1  
also keep in mind the reason why it does not work is in your common.js: function $(id) { return document.getElementById(id);} - when mootools finds the $ is already defined, it drops into compatibility mode and refers to document.id as the alias for $. you can wrap calls to $ through mootools in an anon function like so: (function($) { ... do stuff using $ })(document.id); or you can remove the function from common.js as the mootools one will replicate the effect. – Dimitar Christoff Mar 2 '10 at 15:24
Understood. I'm not going to mess with it as it seems to be quite stable at this time. Your help was truly invaluable. – Honus Wagner Mar 2 '10 at 18:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.