Datatables pagination characters "<<" and "<" not displaying correctly in IE and Safari

Posted by Jaaromy on Stack Overflow See other posts from Stack Overflow or by Jaaromy
Published on 2010-05-14T00:08:16Z Indexed on 2010/05/14 0:14 UTC
Read the original article Hit count: 195

Filed under:
|

I'm using the DataTables jQuery plugin and am having issues with the First and Previous pagination links displaying correctly in IE and Safari (Firefox and Opera work).

"<<" and "<" display as "<" and "".

$(document).ready(function () {
     oTable = $('#fileList').dataTable({
            "bJQueryUI": true,
            "sPaginationType": "full_numbers",
            "oLanguage": 
            {
                "sSearch": "Search all columns:",
                "oPaginate": 
                {
                    "sNext": '>',
                    "sLast": '>>',
                    "sFirst": '<<',
                    "sPrevious": '<'
                }
            }
});

I have attempted to escape '\<\<' to no avail.

Any ideas?

© Stack Overflow or respective owner

Related posts about datatables

Related posts about jQuery