This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Enable null values assignments in javascript..without stopping the program flow. Same code is ok in IE8

  • 1 (رد واحد)
  • 1 has this problem
  • 12 views
  • آخر ردّ كتبه cor-el

more options

I have the following code which is falling over in Firefox, while in other browsers like IE, Chrome and Opera is passing through even though the value in the array at that point of time is null.

var vitemp = document.getElementById('F06_'+ij).value;

In firefox, i get the error below.

[18:59:35.747] TypeError: document.getElementById(...) is null @ http://

How can i change the firefox parameters so as to be less strict for null value assignments ?

I have the following code which is falling over in Firefox, while in other browsers like IE, Chrome and Opera is passing through even though the value in the array at that point of time is null. var vitemp = document.getElementById('F06_'+ij).value; In firefox, i get the error below. [18:59:35.747] TypeError: document.getElementById(...) is null @ http:// How can i change the firefox parameters so as to be less strict for null value assignments ?

All Replies (1)

more options

Use code like this to test if that id exists.

var vi_id = document.getElementById('F06_'+ij);
var vitemp = vi_id?vi_id.value:null;