show/hide this revision's text 3 added 1 characters in body

my solution is a compbination of the (good) answers posted here:

as the function is called, it will document.write a div with a unique id. then on document.onload that div's parent node can be easily located and appended new children.

I chose this approach because some unique restrictions: I'm not allowed to touch the HTML code other than adding script elements. really, as ask my boss...

another approach that later came to mind:

function whereMI(node){
    return (node.nodeName=='SCRIPT')? node : whereMI(node.lastChild);
}
var scriptNode = whereMI(document);

although, this should fail when things like fireBug append themselves as the last element in the HTML node before document is done loading.

show/hide this revision's text 2 deleted 10 characters in body

my solution is a compbination of the (good) answers posted here:

as the function is called, it will document.write a div with a unique id. then on documentReady event, document.onload that div's parent node can be easily located and appended new children.

I chose this approach because some unique restrictions: I'm not allowed to touch the HTML code other than adding script elements. really, as my boss...

another approach that later came to mind:

function whereMI(node){
    return (node.nodeName=='SCRIPT')? node : whereMI(node.lastChild);
}
var scriptNode = whereMI(document);

although, this should fail when things like fireBug append themselves as the last element in the HTML node before document is done loading.

show/hide this revision's text 1

my solution is a compbination of the (good) answers posted here:

as the function is called, it will document.write a div with a unique id. then on documentReady event, that div's parent node can be easily located and appended new children.

I chose this approach because some unique restrictions: I'm not allowed to touch the HTML code other than adding script elements. really, as my boss...