Skip to content Skip to sidebar Skip to footer

Createelement Error In Ie8

I am getting the follow error on the following line in IE8 ( not in IE9 or chrome or firefox ) popup = document.createElement('div'); Error : Webpage error details User Agent: Mo

Solution 1:

Changed the line to

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

and it works. funny.

Post a Comment for "Createelement Error In Ie8"