Skip to content

Instantly share code, notes, and snippets.

@SamyCoenen
Created April 18, 2016 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SamyCoenen/80f1420f8eec518ea70ce8f6e33e2172 to your computer and use it in GitHub Desktop.
Save SamyCoenen/80f1420f8eec518ea70ce8f6e33e2172 to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function(){
$("input[type='submit']").click(function (event){
var fout=false;
naamControle();
function naamControle(){
if($("#naam").val().trim()===""){
$("#naam").css('background','blue');
$("#foutenaam").css('color','red');
fout= true;
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment