function SpaceFunction() {
var x = document.getElementById("removespace");
x.value = x.value.replace(/ /g, "");
}
and :
function Count() {
var i = document.getElementById("mylabel").value.length;
document.getElementById("display").innerHTML = 150 - i;
}
why does not work on mobile devices? and What should I do?