Does this work for you?
function showMe() {
// should log the runMe as the caller and showMe as callee
console.log('Callee: ',arguments.callee)
console.log('Caller: ',arguments.callee.caller);
}
Note, this is non-standard javascript.
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function/caller