Opened 15 years ago
Closed 12 years ago
#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: | ||
Blocked by: | Blocking: |
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 (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
need: | Review → Patch |
---|---|
Priority: | major → minor |
comment:3 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
ajaxForm is a plugin and not part of jQuery core.
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.