gencay
gencay

Reputation: 609

jquery load from https

I am trying to load an https link's html to my client side using jQuery. And my code is:

$(document).ready(function() {
     $('#intro').load("https://abc.com/find.asp?param_a=00001&param_b=0002")
});

However server responses without anything. Is there something I miss?

Upvotes: 0

Views: 197

Answers (1)

Khepri
Khepri

Reputation: 9627

[Fiddler] 504 Connection Failed: No connection could be made because the target machine actively refused it 199.181.132.250:443
Timestamp: 08:58:32.184

504 Gateway Timeout The server was acting as a gateway or proxy and did not receive a timely response from the upstream server

So, at least at the moment, you won't be able to connect.

Upvotes: 1

Related Questions