Hello,<br>I have a hover control that shows an OpenLayers.Popup.SmallPopup with the HTML &quot;&lt;i&gt;Loading data... please wait...&lt;/i&gt;&quot;, then I make a WMS request, and when that comes back  I set SmallPopup.contentHTML to the HTML that came back from the GetFeatureinfo request.<br>
<br>My code looks like this:<br><br> if( map.getZoom() &gt;= 12)<br>{<br>   pinPopup(evt,&quot;&lt;i&gt;Loading data... please wait...&lt;/i&gt;&quot;);<br><br>                        var url = wmsurl<br>                            + &quot;?REQUEST=GetFeatureInfo&quot;<br>
                            + &quot;&amp;EXCEPTIONS=application/vnd.ogc.se_xml&quot;<br>                            + &quot;&amp;BBOX=&quot; + map.getExtent().toBBOX()<br>                            + &quot;&amp;X=&quot; + evt.xy.x<br>
                            + &quot;&amp;Y=&quot; + evt.xy.y<br>                            + &quot;&amp;INFO_FORMAT=text/html&quot;<br>                            + &quot;&amp;QUERY_LAYERS=cira:addresses&quot;<br>                            + &quot;&amp;LAYERS=cira:addresses&quot;<br>
                            + &quot;&amp;FEATURE_COUNT=50&quot;<br>                            + &quot;&amp;SRS=EPSG:900913&quot;<br>                            + &quot;&amp;STYLES=&quot;<br>                            + &quot;&amp;WIDTH=&quot; + map.size.w<br>
                            + &quot;&amp;HEIGHT=&quot; + map.size.h;<br>                        <br>                        OpenLayers.loadURL(<br>                        url,<br>                        &#39;&#39;,<br>                        this,<br>
                        function(response,evt)<br>                        {<br>                            map.popups[0].contentHTML = response.responseText;<br>                        },<br>                        receiveGetFeatureInfoFailure);<br>
                    }<br><br>however the new HTML doesn&#39;t get updated in the popup.  I was hoping I did not have to destroy the popup and pin it back up to the map with the new HTML. <br><br>Thank you very much,<br><br>
-- <br>Signed,<br>Alessandro Ferrucci<br>