**IE: **Var obj = document. ElementFromPoint (event. ClientX, event. ClientY);
**Get object text **Var a = obj. The innerText
FF requires adding an object to the event to read the coordinates.
**HTML: **The onclick = “gj (event)”
**JS: **
function gj(event){
var b=obj
obj=document.elementFromPoint(event.clientX,event.clientY);
}