I need to run a local project without Inet connection and therefore would like to be able to include jQuery into the local folder, which should be no problem. But it is.
The available space is extremely limited and the cpu power is a joke (it is a small control unit for an industrial machine), even the 60kB js framework slows it down a lot.
That is why I would like to include the following as native Javascript:
window.onload = function () {
var auto_refresh = setInterval(
function () {
$('#w1').load('testing.html #w1');
}, 1000);
};
I read that AJAX without jQuery is a whole lot more complicated. Can anyone help?