I use module jquery_update for update Drupal Jquery to 1.7 version, that needed by other modules. But when I update to JQuery 1.7, function ctools_ajax_command_redirect() stops working, browser don't do redirect to other url.
If I rollback to JQuery 1.5 - ctools_ajax_command_redirect() works well.
How I can fix this problem?
Comments
Comment #1
ayesh commentedI'm having the same problem. The OP probably have figured this out, but for the rest, call
ctools_add_js('ajax-responder');from the page you are building the ajax/modal content from.This will ensure the redirect ajax command is created before calling it.
ctools_ajax_command_redirect()callsctools_add_js('ajax-responder');, but it doesn't seem to register the commands at that moment.Comment #2
gurunathan commentedI also have the same issue. Any possible solution??
Comment #3
japerryDrupal 7 is no longer supported, closing.