Is this possible to get result from a php file without using jQuery ? i haven\'t permission to use Jquery and any other javaScript platform.
i use this one to send request with javascript and its works perfectly :
function httpGet(theUrl)
{
var xmlHttp = null;
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send( null );
alert(xmlHttp.responseText);
}
and the html code :
Send log