Modify ↓
Ticket #2227 (closed bug: invalid)
ajaxForm() with dataType script does not handle redirect well
| Reported by: | khelenek | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.2.2 |
| Component: | ajax | Version: | 1.2.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
I added a post here:http://groups.google.com/group/jquery-en/browse_thread/thread/ef70736d93ffac90/d09bf726c2c4ccca?lnk=gst&q=ajax+redirect#d09bf726c2c4ccca
- Create a form
- Use the jquery forms plugin, do $('myform').ajaxForm({dataType:'script'});
- Sumbit the form
- Have you server return "window.location.href='jquery.com';"
- Watch the page redirect
- Press back button, you go back to the page *before* step 1.
The equivalent code using prototype works as expected (the browser back button returns you to the original page with the form.)
Windows XP Firefox 2.0.0.11/IE7
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

OK, dug into this a little deeper and it appears to be a side effect of the new globalEval() function based on andrea giammarchi's code, where a script tag is added to the node instead of using the eval() function.
To see this behavior, just go into firebug and load any page which includes jquery, and type this into the console:
$.globalEval('window.location.href=" http://jquery.com"');
and you will see the history get erased. Compare to:
eval('window.location.href=" http://jquery.com"');
This is kind of a dealbreaker for me since I use that functionality currently. A workaround would be great - a fix or promise of a future fix would be excellent.