Welcome Guest, Not a member yet? Register   Sign In
newbie redirect question with ajax
#1

[eluser]gloosemo[/eluser]
i'm trying to redirect from within a controller to a different page, recinput2.

redirect('recinput2', 'location');

when i run this in a controller function called login that is called via ajax, i get the response in ajax and i can view the page in firebug but the page itself does not change in the browser. How can i get the webpage to change in the browser in response to an ajax call?

BTW The ajax call is made with jQuery

Code:
var username = $('#username').val();
  var password = $('#password').val();
  //clog(username);
  //clog(password);
  
  function logObj ( a, b ) {
   this.username = a;
   this.password = b;
  }
  var obj = new logObj ( username, password );
  var strToSend = encodeURIComponent(jQuery.toJSON( obj ));

  $.ajax({
   url: '/index.php/welcome/login',
   type: 'POST',
   async: false,
   data: 'passme=' + strToSend,
   success: function(data) {  
    /*
    alert("Receipt Deleted");
    oTable.fnReloadAjax();
    */
   }
  });


Messages In This Thread
newbie redirect question with ajax - by El Forum - 01-19-2014, 11:35 AM
newbie redirect question with ajax - by El Forum - 01-19-2014, 11:44 AM



Theme © iAndrew 2016 - Forum software by © MyBB