Created
April 18, 2016 08:35
-
-
Save SamyCoenen/80f1420f8eec518ea70ce8f6e33e2172 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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