&nbsp;Hello:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I am using the openlayers2.8. <br>&nbsp; &nbsp; &nbsp; I want to add a popup about the feature at the mouse click position, and I saw that I can use the OpenLayers.Control.SelectFeature to select feature and hightlight the feature. I have met a problem How to get the mouse's click postion in the event("featurehighlighted") hanlder&nbsp; function ("report"). I try this:<pre id="line1">   var report = function(e) {
                //OpenLayers.Console.log(e.type, e.feature.id);
                map.addPopup(new OpenLayers.Popup.FramedCloud(
                        "chicken", 
                        map.getLonLatFromPixel(e.object.events.getMousePosition(e.object.handlers.feature.evt)),
                        null,
                        "&lt;div&gt;ss&lt;/div&gt;",
                        null,
                        true
                    ));       
                 
            };<br><br>But In getMousePosition()  a error occurred: "this.element is null".<br>I want to ask: How to get the click position?  What is the function getMousePosition's parameters ?<br><br></pre><div dir="ltr">Looking forward to your help.<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Wang <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CNIC,CAS,China<br><br><br></div><pre id="line1"> </pre>