I am fairly new to html and js. Let say if I have the following codes in index.html:
<a href='edit.html?id=1>item1</a>
<a href='edit.html?id=2>item2</a>
<a href='edit.html?id=3>item3</a>
then I create a page named edit.html But How do I keep track of the id(1 or 2 or 3) that is being passed to edit.html using jquery or js?
Please help..