maxatwork / form2js

Javascript library for collecting form data
http://maxatwork.github.com/form2js/
MIT License
640 stars 137 forks source link

NodeList undefined error in ie7, (solution included) #7

Closed ndelargy closed 13 years ago

ndelargy commented 13 years ago

line 50 throws an error in ie7

solution is to change line 50 in form2object.js from

if (rootNode.constructor == Array || rootNode.constructor == NodeList )

to

 if (rootNode.constructor == Array || ( typeof NodeList != "undefined" && rootNode.constructor == NodeList ) )

Thanks

maxatwork commented 13 years ago

Fixed, thanks!

ndelargy commented 13 years ago

Thanks Max