Getting ajax to redirect on success

Getting ajax to redirect on success

I'm using laravel 4 and in order to save an image I used some ajax code. For my site I need to redirect when the submit button is clicked. The page that it needs to redirect to is index.blade.php

Here is my ajax code
  1. $.ajax({
                type: 'POST',
                url: $(this).attr('action'),
                data: $(this).serialize(),
                dataType: 'json',
                encode : true,
                success: function(response) {
                    location.href('admin/test');
                }
            });