Technology Questions

Go Back   Technology Questions > Software Questions > Internet > Internet Explorer

Internet Explorer Discuss IE7 or any other IE version.

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 12-11-2007, 05:49 PM
Owenbaby
Newsgroup Contributor
 
Posts: n/a
Internet Explorer Script Error

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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 12-11-2007, 05:49 PM
  #2 (permalink)  
Old 12-11-2007, 05:50 PM
Frank Saunders MS-MVP IE,OE/WM
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.




--
Frank Saunders MS-MVP IE,OE/WM
www.fjsmjs.com
Do not send email

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 12-11-2007, 05:50 PM
Frank Saunders MS-MVP IE,OE/WM
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.


Sorry about the first answer.

Go to Tools | Internet Options | Advanced.
Check the box to Disable script debugging.
Uncheck the box to Display a notification about every script error.

1. You might want to refresh your scripting engine:
http://www.microsoft.com/downloads/d...displaylang=en

2. Sometimes there's a corrupt file in the cache and one must go to Tools |
Internet Options and click Delete Files.

2a. Start | Run | Regsvr32 vbscript.dll

2b. Start | Run | Regsvr32 jscript.dll

3. Re-register all DLLs listed in http://support.microsoft.com/?kbid=281679

4. See also
Error Message When You Browse the Web: An Error Has Occurred in the Script
on This Page
http://support.microsoft.com/?kbid=306831
Scripting Errors When You View Web Pages in Internet Explorer after
Installing Office 2003
http://support.microsoft.com/?kbid=822521

5a. IE Tools>Internet Options>Advanced>Browsing>Enable third-party browser
extensions (uncheck & reboot).

5b. Find the hijacker that caused 5a to be checked (or if none were checked,
check for hijackware anyway):

Dealing with Hijackware
http://mvps.org/winhelp2002/unwanted.htm
http://aumha.org/a/parasite.htm
http://www.mvps.org/inetexplorer/Darnit.htm

How to Troubleshoot Script Errors in Internet Explorer
http://support.microsoft.com/kb/308260

--
Frank Saunders MS-MVP IE,OE/WM
www.fjsmjs.com
Do not send email

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 12-13-2007, 07:38 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
---


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #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
---


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6 (permalink)  
Old 12-13-2007, 07:42 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
---


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Internet Explorer Script Error Al Internet Explorer 0 09-19-2007 03:56 AM
Internet Explorer Script Error Numen Internet Explorer 1 07-16-2007 06:00 PM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 05:53 PM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0