I've found a new problem.
Wt embedding into HTML works fine under firefox and opera but fails under IE (6).

Here is a snippet of generated _javascript_ that IE complains to (marked bold):

  if (false) {
    el.innerHTML = html;
  } else {
    var d, b;
    d = new DOMParser();
    b = d.parseFromString('<div>'+html+'<\/div>','application/xhtml+xml');
    d = b.documentElement;
    if (d.nodeType != 1) // element
      d = d.nextSibling;

Error is: 'DOMParser' is undefined

http://www.w3schools.com/Dom/dom_parser.asp
says IE needs DOM parser to be handled differently from FF/Opera...



------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to