2

I am working with Jquery and trying to create a html table first and then trying to access all the columns of first row only. How can I do this? I am trying the below but not working

$("#myTable" tr:first td:eq(0)").attr("innerHTML",sometext);
0

1 Answer 1

4

Just try,

$("#myTable tr:first td").each(function(){
       //iterate those TDS over here.
});
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.