I am having trouble with IE 10 and jQuery .load(). I have a PHP page that I load once the website proper has loaded:
$(document).ready( function() { $(\'#wo
Try url encoding the character in the url
$(document).ready( function() { $('#words').html('Analyzing frequency data...'); $('#words').load('translate.php?character='+encodeURIComponent('')); });