<div id="a">°F</div>
$.get("http://blah.com/go",{'TU':$('#a').text()});
- IIS server logs show the following params:
99.5% of the time: TU=%C2%B0F
0.5% of the time: TU=%C2%B0+F - server subsequently crashes because it doesn't know what '° F' is. Admittedly one of the flaws is that we are scraping text out of the DOM & sending it to our server. This is where I suspect the problem is, but I would like to understand more.
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??