Skip to content

Instantly share code, notes, and snippets.

@huezoaa
Last active August 29, 2015 14:14
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 huezoaa/e659d669e6931ccf8a3b to your computer and use it in GitHub Desktop.
Save huezoaa/e659d669e6931ccf8a3b to your computer and use it in GitHub Desktop.
Input Validation - JQuery homework
$(function(){
$('input').change(function(x){
if (x.target.value !== "Wyncode"){
$(x.target).addClass('red');
};
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment