Hey Leeoniya,

I'm not sure exactly what you are trying to do, but I think binding
each cell to an external function, or creating an 'anonymous' function
inline maybe isn't the best way to go.

I have a table with lots of cells, and when the user clicks on a cell,
i pass the id of that cell to a script. It's fairly easy, and i think
much more efficient than what you are suggesting (but I don't exactly
understand what you are trying to do).

Here's the basics of how my script works
[code]
$("td").click(function(){
      var id = this.id;

}

Reply via email to