If I serve the page via SSL and I make an AJAX message:
$.post('/core/somepage.php', ....);
Will the message be generated via HTTPS, or do I need to specify an absolute URL, for example:
$.post('https://example.com/core/somepage.php', ....);
In addition, this applies to:
$('#element').load('/core/something.php');
?
Qiang source share