|
incidentally, a programmer mistake by parsing literals on a data feed could result in something like
If your datafeed contained:
alert("oops, thought i took this debug line out of here");
you'd execute it. The datafeed cannot accidentally cause the calling page to execute javascript code unless you eval the data coming back.
|