I want each cell in my table (excluding headers and has to be a number) to link to a URL which is formed using the position of the cell, ie the cell number and column number of it.
Eg a cell will link to example.com/hello.html?column=1&row=3
Ideally this would be done with jQuery...unless there is a better way? I can't easily alter the php code that is generating the table, so I think it will have to be browser-side.
I've had a look at datatables and its api call fnGetPosition but am unsure how to convert this into a link which operates on every numerical cell that isn't the first row or column.
Thanks....