Hi I am new jQuery Please help in this.
I got table which contains different text values in first 3 columns of every row and 4th column contains a button. when the button is clicked which is in 4th column(example: td:eq(3)) of a row i am trying to find the 2nd column(example: td:eq(1)) of that row(nRow) and i can get the text contained in that cell. using the syntax $('td:eq(1)', nRow).html() but i want to know if this HTML contains "?" if it contains then how many of them are there. for this i am trying to use a script like this $("$('td:eq(1)', nRow):contains('?')").length; which is returning zero every time when i run this Please point me out what i have done wrong on this? Thanks Kumar