I have a map where I need to update the contents of the info window after it is opened.
What needs to happen is that when a user changes the date in the drop down list, the counts field should update.
The infowindow are loaded via a kml file.
Here is the dropdown code:
<SELECT id="Select2" onchange="Select2_onchange();" name="Select2">
<% i = 1 %>
<% Do While Not rs3.EOF %>
<OPTION value="<% = i %>"><font face="Arial, Helvetica, sans-serif" style="font-size:9pt"> <% = rs3(0) %></font></OPTION>
<% i = i + 1 %>
<% rs3.MoveNext %>
<% Loop %>
</SELECT>
and here is the jacscript function:
What I'm trying to do is call back the page that builds the kml file.
However that page itself is called from the main page in the first link. Right now it isn't doing anything, so I'm wondering how would I implement that?