Hi, I have a list of links which I use to filter results e.g.
filter 1, filter 2, filter 3, filter none
When a filter link is clicked I update the contents of a div using the JQuery load command.
What I then want to happen is that the filter link the user clicked on becomes just text rather than a link (this will stop the user re-clicking on the link and also shows them which filter they are using). If the user then clicks on another filter link I want the previous link to be restored and then link on the filter they clicked on removed.
How would I do this usig JQuery? I found the command remove but I don't think this would help as I would not be able to restore it when the user clicks on a different filter.
Thanks