[jQuery] Re: .replaceWith Issue
Brilliant! Thanks very much. :D
[jQuery] Re: .replaceWith Issue
IE doesn't handle custom elements well, make them all s or s and it should be fine. Or if you need to keep it that way, try putting this before all scripts: if( $.browser.msie ){ $.each('Name,Role,Interests,Words'.split(','), function(){ document.createElement(this); }); }; creating an