I've got this small script to toggle happy face when focusing in the form:
/* Happy face script */
$('#search').on('focusin', function() {
$("#smile").removeClass("fa-meh-o");
$("#smile").addClass("fa-smile-o");
});
$('#search').on('focusout', function() {
$("#smile").removeClass("fa-smile-o");
$("#smile").addClass("fa-meh-o");
});
However when I click 'submit'
it goes back to the focusout
state. How do I avoid it?