There is a regular html table, how can I use jquery to determine which column the cursor is pointing at?

    1 answer 1

    Like that:

    $("td").hover(function(){ alert($(this).index()); }); 
    • one
      added a bracket) - Sh4dow
    • yes, thank you :) - Syabrowka