> Without manipulating the KML files, is there a solution that will allow
> the descriptions in all of the network linked KML files that load to be
> treated as html?
Not entirely sure what you mean by this but Webkit (the open source
web browser engine used by GE) should render most HTML5, JS, CSS in a
description balloon in the same way as they do in any browser. There
are few quirks, e.g., <video> is broken right now, some JS alert
dialog boxes wont show, etc. You can read details here:
http://code.google.com/apis/kml/documentation/kmlreference.html#description
But as long as you're including CDATA, then the GE parser will leave
the contents between the description tags along:
<description><![CDATA[ .....all your HTML, JS , CSS goes here...]]></
description>
JB