This is the html code
< body >
< div id="map" >
I am traversing the parents until I find the body to find the map
var pageFrom= $(theElement).parentsUntil( 'body' );
var pageFromId = $(pageFrom).attr("id");
in firebug i see pageFrom [div#map.current]
The problem is that pageFromId is "" and it should be "map"
try this: