I have a function that takes an x and y value, and, using a tables rows and columns, finds the given cell. JQuery:
function changeNum(x,y,num)
{
var thisRow = $(".sudoku:nth-child("+y+")");
var thisCell = $(thisRow+":nth-child("+x+")");
}
Something in the thisCell declaration is causing the javascript to stop.