Программы: January 2012 Archives

В некоторых скриптах браузер IE9 выдает ошибку: invalid_character_err 5.

Связано это с тем, что ранее IE некорректно обрабатывал скрипты и программисты писали их примерно так:

if (browserEngine == 'msie') {  // setAttribute('name') not valid in IE6
var newTag = document.createElement('<input type="hidden" name="' + elName + '" id="' + elName + '">');
          newTag.setAttribute('value', elValue);
  }
  else {
    newTag = document.createElement('input');
    newTag.setAttribute('type', 'hidden');
    newTag.setAttribute('name', elName);
    newTag.setAttribute('id', elName);
    newTag.setAttribute('value', elValue);
  }

About this Archive

This page is an archive of entries in the Программы category from January 2012.

Программы: February 2011 is the previous archive.

Find recent content on the main index or look in the archives to find all content.