I am trying to load a src url inside of javascript, but its not working..
function detectmob() {
if(window.innerWidth <= 800 && window.innerHeight <= 600) {
return 'https://example.com/advertisements.js';
} else {
return false;
}
}