jQuery.prepend changes specified tag all to lowercase...?
Does anyone know why the line below results in the following line in HTML (note the case of "clip
Path")
- $('#designCanvas > defs').prepend('<clipPath id="clippingPath"></clipPath>');
- <clippath id="clippingPath">
- <use x="0" y="0" width="300" height="300" xlink:href="#clip1"></use>
- <use x="0" y="0" width="100" height="100" xlink:href="#clip2"></use>
- </clippath>