My Web application renders me "n is null" Javascript error in firefox browser when i try to access a particular page. This error originates in swfobject.js file.

Also i get another Javascript error "a is null" in firefox browser when i try to access a particular page.This error originates in MicrosoftAjax.js file.

Any help would be deeply appreciated.

Thanks.

link|improve this question

67% accept rate
I suspect that in order to get an answer your going to need to link to a page that exhibits this behavior – Alex K. May 3 '11 at 10:23
feedback

2 Answers

up vote 2 down vote accepted

Your problem may be that the code is trying to access an HTML element that has not loaded yet. To resolve this try wrap the code that is getting the errors in a jquery ready block if you are using jQuery:

$(document).ready(function () { 
//Code that uses SWF/MicrosoftAjax here
});

or if you are not using jQuery:

windows.onload=function()
{
  //Code that uses SWF/MicrosoftAjax here
}
link|improve this answer
feedback

Use firebug to pinpoint the problem.

99%, the problem's origin is not swfobject.js but in some script that's loaded before it.

link|improve this answer
thanks let me try it. – user735647 May 3 '11 at 10:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.