I have a PHP script that returns information - this is working as expected and I'm seeing the TM symbol correctly. This uses the URL www.example.com/search/search_box.php?search_phrase=seattle
However, when I call the page AJAX post, I see black diamonds where the TM should be.
My call is:
$.post("/search/search_box.php", {search_phrase: "seattle"}, function(data) {
var strResponse = data;
$("#output_area").html(strResponse);
});
jQuery is linked from the CDN:
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
Both search_box.php and the calling page are UTF-8 encoded (using Notepad++ as the editor). The calling page is a simple page that doesn't have ANY includes or scripts.
Suggestions would be appreciated please?