The 'src' property of an image is encoded when assigned. Is it possible to avoid it?
Example: http://jsfiddle.net/GqQKv/
var img = new Image();
img.src ='http://example.com/whatever?s=Hampshire 123&co=USA'
console.log('src', img.src); // instead of spaces we have %20
ThanksALot();