with create javascript internet-explorer-8 createelement

javascript - with - Error de createElement en IE8



create table javascript (1)

Estoy obteniendo el siguiente error en la siguiente línea en IE8 (no en IE9 o Chrome o Firefox)

popup = document.createElement(''div'');

Error:

Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729) Timestamp: Fri, 5 Aug 2011 13:39:41 UTC Message: Object doesn''t support this property or method Line: 72 Char: 5 Code: 0 URI: http://192.168.7.1/fquick/script.js

¿Cómo lo hago?


Cambió la línea a

var popup = document.createElement(''div'');

y funciona. gracioso.