example:
if ($AQI1 eq "Good") {
$message = &altQualityMessages($Pollutant{$TodayDay . $City .
$State},"Good");
$AQI1="<A HREF=\"javascript:PopUp(\'$TodayDate\',\'$LinkCity\',\'$LinkState\')\"
onMouseOver=\"window.status='$Pollutant{$TodayDay . $City . $State}
Forecast For $City, $State';return true\"
http://www.epa.gov/cgi-bin/airnow.cgi?MapDisplay=FORECAST
javascript error:
missing ; before statement.
window.status='OZONE Forecast For Coeur d'Alene, ID';return true
One problem with this is that if you urlencode with Perl it is not sure that
the decodeURI function in javascript decodes it properly, you have to test
that (I am not familiar with Pearl, it does not work with PHP). I would try
adding a script in the HTML head, the output should look something like:
var jsLinkCity = encodeURI($LinkCity)
and then pass the variable jsLinkCity with the Popup function and decode it
again in the head of the popup window file.
You can also encode and decode it with Perl, but probably not encode it with
one and decode it with the other.
hth
Markus
"Jeanne" <browdy...@epa.gov> schrieb im Newsbeitrag
news:61604a16.0306...@posting.google.com...
Actually, I don't think it would be a good idea to URL encode it, since the
only characters that'd stress out Javascript in a variable value would be
apostrophe and in certain cases backslash (like if for some reason a value
contained (and was supposed to contain) \' or \\ or \n). If you just use cgi
to replace every instance of \ with \\ and ' with \' your Javascript
variables will be correct (at least AFAIK ;)
Daniel
It bites that JavaScript does not have nesting string delimiters. Rebol does
(www.rebol.com), and I think that is quite civilized.
You need a slashify function which will insert a backslash before every quote,
single quote, and backslash in a string. Using such a function, your code will
get a lot easier to read, too.