> What I want you, dear mootool-pro's is to help me solve this
> problem, for I REALLY need the web to function in IE8, and in fact I
> chose mootools to forget about compatibility problems...
I think IE doesn't like invalid HTML tags in what is supposed to be
valid, albeit serialized, HTML. You'll note that if you use, say,
generic DIVs as enclosures, the problem doesn't occur.
If you're using custom tags like `subcategory`, you technically should
have a namespace declared, but I don't think that's necessary in
practice. You can use an on-the-fly namespace and I think that'll
clear it up.
<mycustom:subcategory id='1'>
<mycustom:category_id>7</mycustom:category_id>
<mycustom:code>ACTIO</mycustom:code>
<mycustom:name>Action</mycustom:name>
</mycustom:subcategory>
-- Sandy