<div id="a">°F</div>
$.get("http://blah.com/go",{'TU':$('#a').text()});
Other info: the 0.5% of the time has been both IE8 & Chrome. All IP's geolocated to Columbia, which makes it seem like a local issue, but we've been unable to replicate it.
Ideas??
So the problem is that sometimes there is a space between the °
and the F
, that space gets translated into a +
, and the server doesn't accept it? If so, why not strip out the space before sending it?
$.get("http://blah.com/go",{'TU':$('#a').text().replace(' ', '')});
// Or a more granular fix
$.get("http://blah.com/go",{'TU':$('#a').text().replace(/°\sF/, '°F')});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With