How to find the column in a table?
I am using the following code to locate a column in a table. However, some rows in the column is working and some is not while I am hovering my mouse over that column. Why is it so?
$(document).ready(function()
{
$( "#table_grid_W1269_0 td:nth-child(3)" ).click(function(e)
{
var facilityRollup= $(e.target);
var facilityRollaupName = facilityRollup.html();
var url = './Main.aspx?evt=2048001&src=Main.aspx.2048001&documentID=BC42714F462642081F0A20BCF456405A&promptAnswerMode=2&valuePromptAnswers=' + facilityRollaupName
window.open(url,'_self');
});