235 B
235 B
var box2 = document.getElementsByTagName('meta');
for (var i=0;i<box2.length;i++)
{
console.log(box2[i])
if(box2[i].getAttribute('name')==='apple-mobile-web-app-capable'){
box2[i].setAttribute('content','no')
}
}