"wrap" function has been bug in IE 6, becose element.paremtNode!=null.
element.paremtNode is DOCUMENT_FRAGMENT_NODE (nodeType==11).
Patch for this bug (line 1661).
Replace  "if (element.parentNode)
element.parentNode.replaceChild(wrapper, element);"
to "if (element.parentNode&&element.parentNode.nodeType!=11)
element.parentNode.replaceChild(wrapper, element);"


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to