$.getJSON not working for ie7

$.getJSON not working for ie7

aaraar Posts: 1Questions: 0Answers: 0
edited April 2012 in General
Here is my js code:


$(document).ready(function() {
$.getJSON( "ajax/arrays.json", null, function (json) {
$('#example').dataTable({
"oLanguage": {
"sSearch": "Search in columns:",
"oPaginate": {
"sFirst": "|<",
"sLast": ">|",
"sNext": ">",
"sPrevious": "<"
}
},
"bAutoWidth": false,
"aaData": json.aaData,
"aoColumns": json.aoColumns,
"sDom": "Rlfrtip", //Resizing columns
"sPaginationType": "full_numbers",
"bProcessing": true,
})

Following is my json code:
{
"sEcho": 1,
"iTotalRecords": 30,
"iTotalDisplayRecords": 10,
"aoColumns": [
{"sTitle": "Name"},
{"sTitle": "Login Name"},
{"sTitle": "Account"},
{"sTitle": "User Type"},
{"sTitle": "Status"},
{"sTitle": "Quick Links"}
],
"aaData": [
[
"Narred, Reddy",
"nn000987",
"123",
"SDG",
"ACTIVE",
" "
],
This discussion has been closed.