I'm not sure exactly what you are getting at, maybe describing what
you are trying to do would help.

I have a table that when the user selects certain cells, they are
provided with forms, options, moves, etc. (currently being built, so I
can't point you to it).

Rather than binding to each cell, what i do is give each cell a unique
id, and then put then use the following type of code to figure out
which cell a user has selected.
Then do your function, instead of binding each cell function.

[code]
$("td").click(function(){
            var id = this.id;

Reply via email to