I have the following to disallow spaces
function nospaces(t){
if(t.value.match(/\s/g)){
alert('Username Cannot Have Spaces or Full Stops');
t.value=t.value.replace(/\s/g,'');
}
}
HTML
<input type="text" name="username" value="" onkeyup="nospaces(this)"/>
It works well for spaces but how can I also disallow full stops as well?
Try this
function nospaces(t){
if(t.value.match(/\s|\./g)){
alert('Username Cannot Have Spaces or Full Stops');
t.value=t.value.replace(/\s/g,'');
}
}
Below is the sample html and javscript you just wanted to add /./g for checking for .
<html>
<input type="text" name="username" value="" onkeyup="nospaces(this)"/>
<script>
function nospaces(t){
if( t.value.match(/\s/g) || t.value.match(/\./g) ){
alert('Username Cannot Have Spaces or Full Stops');
t.value= (t.value.replace(/\s/g,'') .replace(/\./g,''));
}
}
</script>
</html>
If not its not necessary to use regex you can use
if(value.indexOf('.') != -1) {
alert("dots not allowed");
}
or if required
if(value.match(/\./g) != null) {
alert("Dots not allowed");
}