Skip to content

Instantly share code, notes, and snippets.

@Ebeta
Created February 8, 2015 22:19
Show Gist options
  • Save Ebeta/30b8ac9d4b741eb5eb75 to your computer and use it in GitHub Desktop.
Save Ebeta/30b8ac9d4b741eb5eb75 to your computer and use it in GitHub Desktop.
wyncodeOrNot.js
$( "form" ).submit(function( event ) {
if ( $( "input:first" ).val() === "Wyncode" ) {
$( "span" ).text().show();
event.preventDefault();
}
$("input").css({'background-color' : 'red'});
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment