[jQuery] Re: .replaceWith Issue

2009-08-19 Thread Matthew Wehrle
Brilliant! Thanks very much. :D

[jQuery] Re: .replaceWith Issue

2009-08-18 Thread Ricardo
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