---
title: "how to select n-th td of a tr using jquery"  
description: "how to select n-th td of a tr using jquery"  
author: "Anonymous User"  
published: 2018-03-18  
updated: 2018-03-18  
canonical: https://www.mindstick.com/forum/34439/how-to-select-n-th-td-of-a-tr-using-jquery  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# how to select n-th td of a tr using jquery

how to [select](https://www.mindstick.com/forum/160534/orderby-then-select-vs-select-then-orderby-performance) n-th td of a tr using jquery

I want to select 2nd td that is inside tr using jquery. How can i do this..

## Replies

### Reply by Anonymous User

You can achive this using :nth-child() Selector

example

```
$("tr td:nth-child()")
```


---

Original Source: https://www.mindstick.com/forum/34439/how-to-select-n-th-td-of-a-tr-using-jquery

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
