I am trying to
function doRow(rowNum)
{
$.ajax({
url: "z.html",
cache: false,
success: function(html){
$('#result + rowNum + "'").append(html);
}
});
This does not seem to work.
I also want to pass variables to data attribute when I get that far.