Today I decided to investigate the design of the Google Hangout chatbox by using the Google Chrome inspector tool. After right-clicking on the chatbox text input element and inspecting it, here is what I discovered:
<div id=":cb.f" class="vE dQ editable" aria-label="Text entry field for Hangout with jhon carib" g_editable="true" role="textbox" contenteditable="true"></div>
Upon analyzing the HTML code, it appears that the id of the element is :cb.f. However, when attempting to copy the CSS path, I encountered this: "#\3a cb\2e f" indicating that the id is \3a.
Neither document.getElementById("\3a") nor document.getElementById(":cb.f") successfully retrieves the element node. Even using the class names proved ineffective.
Could someone clarify what might be happening in this situation?
Thank you,