How to forward the request after success of ajax request ?

How to forward the request after success of ajax request ?

I have this code:

  1. $("#ajaxform").submit(function(e){
  2. var info = $(this).serialize();
  3.    $.ajax(
  4.    {
  5.        url : "ctrl1",
  6.        type: "post",
  7.        data : info,
  8.        success:function(data, textStatus, jqXHR) 
  9.        {
  10.              $('.valid-error').html(data);
  11.         if(data == "success"){
  12.                 $.get("ctrl2", info);
  13.               }
  14.        }
  15.    });
  16.    e.preventDefault()
  17.    });
  18.   $(".submit").click(function(){
  19.       $("#ajaxform").submit();
  20.     });

I am trying to make get request to ctrl2 if my ajax request to ctrl1 success and data == "success". In fact forward the request to another controller after success of ajax request and data == "success". In the HTML I have  #ajaxform and button.