Ná í skjal
Er hægt að ná í texta úr skjali með JS, sbr. fopen og fread (eða eitthvað álíka) í php?
function httpRequest(url,method)
{
var xmlhttp = false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
if (method == '') method = 'GET';
xmlhttp.open(method, url,false);
xmlhttp.send(null)
return xmlhttp.responseText
}
<input type="button" value="Opna skjal" onclick="alert(httpRequest('/bla.txt','get'));" />