How do I remove accentuated characters from a string? Especially in IE6, I had something like this:
accentsTidy = function(s){ var r=s.toLowerCase();
I used string.js's latinise() method, which lets you do it like this:
var output = S(input).latinise().toString();