Link to home
Start Free TrialLog in
Avatar of tekgrl
tekgrl

asked on

Javascript Error: Cannot read property 'click' of undefined

I am getting the following Console Error:

Uncaught TypeError: Cannot read property 'click' of undefined

it is referencing the following javascript code:

function openChatWindow() {
	document.getElementById("lpHeaderEngagement").childNodes[0].click();
}

Open in new window

Avatar of zc2
zc2
Flag of United States of America image

does the element returned by document.getElementById("lpHeaderEngagement") have any child elements?
Avatar of tekgrl
tekgrl

ASKER

No. No child elements.
ASKER CERTIFIED SOLUTION
Avatar of zc2
zc2
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial