Hi Leeoniya,
I'm not sure exactly what you are trying to do, but I've got a large table, and when a user clicks on a cell, i pass the id of that cell to a function. No binding, no inline functions. mine works like this, i hope it helps, though it is pretty basic. [code] $("td").click(function(){ var id = this.id; function(id){ whaterver you want to do; } }); [/code]