But when I tried to select a ROW from the table by its ID like $('tr#0'), it doesnt work. So debuggin and debuggin I figured out that using a numeric Id in any TAG make jquery crazy. There are two solutions for fixing this behaviour:
A) Use eq to get the element of your desire: Something like $('tr').eq(1) will make the trick
B) Dont use a numeric ID at all: I think this is the best solution, so instead use something like:
Hope it help somebody with the same problem