Brake the JQuery UI script in IE browsers

Tagged: 

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #4814
    Pavan
    Member

    creating problem with IE browser it brakes the JQuery UI script. Please suggest how we make compatible with IE.

    [code title=””] $.ajax({
    type: “POST”,
    contentType: “application/json; charset=utf-8”,
    url: “WebForm1.aspx/GetCustomers”,
    data: “{‘country’:'” + country + “‘}”,
    dataType: “json”,
    success: function (data) {
    response($.map(data.d, function (item) {
    var rows = “<tr>”
    alert( item.name);
    alert( item.address);
    }));
    },
    error: function (result) {
    alert(result.d);
    }
    });
    }[/code]

    Error is here:

    [code title=””] response($.map(data.d, function (item) {
    var rows = “<tr>”[/code]

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.