I’m processing something and when the function is successful I would like to redirect to another page and there show the alert “Function successful”.
I’m using CodeIgniter, Javascript and Bootstrap
Any ideas will be appreciated
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Once page X has redirected to page Y, page X is no longer open, so can no longer issue alerts. Your options include:
iframe; or, simply provide a link to it and let the user decide whether to click.)http://example.com/path/to/Y/?alert=Function+successful, and you can design page Y to detect the query string and issue the alert.