Is it possible to uplaod a file from browser to FTP server using ajax?
No. Browsers provide no APIs that allow writing to FTP from JavaScript.
You could post the file to an HTTP end point and then use server side code to push it to your FTP server.