I'm using $.post()
to call a server using Ajax and then using the JTemplate
to write data to the current page. However, if the session times out, the server sends a redirect directive to send the user to the login page. In this case, jQuery
is replacing the div
element with the contents of the login page, forcing the user's eyes to witness a rare scene indeed.
How can I manage a redirect directive from an Ajax
call with jQuery 1.9
?