Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

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 இந்த பிரச்சனை உள்ளது
  • 12 views
  • Last reply by cor-el

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)

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;