CSS class in jquery

CSS class in jquery

I want to apply a CSS class to a gridview. I tried to apply this style  reference link , so I try this
  1. success: function (result) {
  2.                   

  3.                    var final = JSON.parse(result.d).response;
  4.                    console.log(JSON.parse(result.d).response)
  5.                    $("#tabledata").empty();

  6.                    if (final.length > 0) {
  7.                        $("#tabledata").append(
  8.                         "<tr><th>ID</th><th>OwnerName</th><th>RegNo</th><th>MileageAccumlation</th><th>MaxSpeed</th></tr>");

  9.                        for (var i = 0; i < final.length; i++) {

  10.                            if (final[i] !== null) {
  11.                                $("#tabledata").append("<tr><td>" +
  12.                                                  final[i][0] + "</td> <td>" +
  13.                                                  final[i][1] + "</td> <td>" +
  14.                                                  final[i][2] + "</td> <td>" +
  15.                                                  final[i][3] + "</td> <td>" +
  16.                                                  final[i][4] + "</td></tr>");

  17.                            }
  18.                        }
  19.                        $("#tabledata").find("tr:th").addClass("GridviewScrollHeader");
  20.                        $("#tabledata").find("tr:td").addClass("GridviewScrollItem");
  21.                    }
  22.                    else {
  23.                        $("#tabledata").hide();
  24.                        $("#Label4").text("No Data");
  25.                    }
  26.                },

but when i build then there is no effect in grid view.And gridview in html

  
  1. <table id="tabledata">
  2. </table>
When i apply this then gridview is display with simple where as i want to apply this css in gridview when i apply this then gridview display without formatting.. what i try

image
what i want  image 2 So how i apply css ?? any solution?