How can I redirect the user from one page to another using jQuery?
|
feedback
|
|
jQuery is not necessary, and It is better than using For example:
| |||||||||||||||||||||
feedback
|
|
Simply do :
| |||||||||||||||||||||
feedback
|
|
You don't need jQuery to do just that:
| |||||||||||||||||||||
feedback
|
|
It would help if you were a little more descriptive in what you are trying to do. If you are trying to generate paged data, there are some options in how you do this. You can generate separate links for each page that you want to be able to get directly to.
Note that the current page in the example is handled differently in the code and with CSS. If you want the paged data to be changed via AJAX, this is where jQuery would come in. What you would do is add a click handler to each of the anchor tags corresponding to a different page. This click handler would invoke some jQuery code that goes and fetches the next page via AJAX and updates the table with the new data. The example below assumes that you have a web service that returns the new page data.
| |||
|
feedback
|
|
This works for every browser:
Good luck! | ||||
|
feedback
|
This version works well with jQuery 1.6.2. | ||||
|
feedback
|
|
You can do that without jQuery as:
And if you want only jQuery then you can do it like :
| |||
|
feedback
|
|
I think it is elegant to build a form with GET method and then submit it, and it will work in every browser and every version.
and you go:
| ||||
|
feedback
|
protected by Community♦ Mar 27 at 17:03
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.