This is my question, I have an index.html
that has a table populated with a jQuery ajax function. I want to know how do I link each table element to a single page called details.html
that should be populated using some parameter from index.html (e.g. details.html?id=2
has different data than details.html?id=9
but they both have the same structure)
Assuming that I can only use html and jquery, how would I do that?
I mean, how (in details.html) can I get the id=2
or id=9
parameter?
Thanks in advance (I'm sorry if this question is kind of noobish, but I'm not so used to html)