If you decode the URL prior to passing it in, it should work:
Cheers,
Matthew
var url = "http://server/site/Lists/Working%20Docs";
console.log(url);
console.log(decodeURI(url));
I don't think I've ever ran into this problem, so the actual answer may be something else altogether. Whatever you find out, post back.Cheers,
Matthew