View Single Post
  #5 (permalink)  
Old 12-13-2007, 07:40 AM
Robert Aldwinckle
Newsgroup Contributor
 
Posts: n/a
Re: Internet Explorer Script Error

"Owenbaby" <Owenbaby@discussions.microsoft.com> wrote in message
news:FF88180F-CE23-4255-A9A1-487FC493BA1C@microsoft.com...
> When I visit one particular web site I receive the following message:
>
> An error has occurred in the script on this page.
> Line:2
> Char: 1484
> Error:'DQM_fontsize_ie4' is undefined.
> Code:0
> URL:http://coastccu.org/main.html
> Do you want to continue running scripts on this page? YES NO
> The script error message continues to pop up whether I click YES or NO.
> I recently downloaded Internet Explorer 7 Service Pak 2
>
> Please help.



Script debugger shows it's actually in dqm_ie.js
Here is the actual instruction involved:

if(ie4)tpx=DQM_fontsize_ie4+"pt";

Probably a coding error in a rarely executed bit of the script.
I suspect you could avoid the symptom by spoofing the MSIE 6.0
User-Agent. (Ref. KB923196. Ignore the title.)

BTW it's not enough just to override the transmitted User-Agent
(e.g. via Fiddler's Tools menu). The ie4 value is probably being
set by interrogating the javascript:navigator.useAgent value
which only gets changed by changing the User-Agent value in the registry.

It doesn't seem to affect the operation of the site.

In any case you could notify the site's administrators to make sure
that they were aware of this problem.


Good luck

Robert Aldwinckle
---


Reply With Quote

 
Old 12-13-2007, 07:40 AM