S
S
sl1m_dogg2014-10-09 15:59:09
PHP
sl1m_dogg, 2014-10-09 15:59:09

Will a synchronous request to a server with SSL pass?

$.ajax({
                          url: 'index.php',
                         type: 'POST',
                         data: somedata,
                          async: false,
                         success: function(res) {
                            console.log(res);
                    }
                    });


Actually now there is no way to test it, but you need to be 100% sure.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nadarik, 2014-10-11
@Nadarik

In theory, this request does not care at all what server it is.
So yes. It will be asynchronous. Better, think twice if you need this and if asynchronous requests can be avoided.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question