Try with below code:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#table1 tr:lt(2)").hide();
$( "#table1 tr:last").hide();
});
});
</script>
</head>
<body>
<table id="table1">
<tr>
<td style="text-align:center;">ghj1</td>
</tr>
<tr>
<td style="text-align:center;">fgh2</td>
</tr>
<tr>
<td style="text-align:center;">n3</td>
</tr>
<tr>
<td style="text-align:center;">xcv4</td>
</tr>
<tr>
<td style="text-align:center;">dsgf5</td>
</tr>
</table>
<button>Click me</button>
</body>
</html>