document.getElementById('idName').onclick = function() {
var context = this.parentNode;
console.log(context); //<div class="">...</div>
functionName();
};
function functionName() {
console.log(context); // Uncaught ReferenceError: context is not defined
...
}
functionName
должно находиться внутри функции-обработчика onclick