I am currently developing a canJS application and have been able to successfully handle the click event for an HTML table using the code below.
'table td click':function(el,event){
console.log('clicked ',el.text());
}
- Is there a way to listen specifically for clicks on the first column of the table, rather than any cell within it?
- What is the best method to retrieve data from a specific column within the table cell (el)?