|
Possibly a good example of over-complication, the solution would be easy if the <form> post was not needed. (The JavaScript modifies a form then submits it.) That is the back-end (server-side) code could be changed to accept HTTP Get Requests and the 12345 page links could be changed to links with ?sc=25&page=2 instead.
Further complications may arise if this method means variables get dropped if they are not added to each 12345 link. Which may be why the current page uses a <form> to hold on to them. Sessions (and cookies or session-ID in the URL) might be able to replace the form.
|