Skip to content

Instantly share code, notes, and snippets.

@segovia94
Last active August 29, 2015 14:04
Show Gist options
  • Save segovia94/479b6b0b4975bd8eed8b to your computer and use it in GitHub Desktop.
Save segovia94/479b6b0b4975bd8eed8b to your computer and use it in GitHub Desktop.
$("input").focus(function() {
$(this).parent().addClass("add-bg");
}).blur(function(){
$(this).parent().removeClass("add-bg");
});
@jjpost
Copy link

jjpost commented Jul 30, 2014

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment