I've got this in a file in my theme /sites/all/themes/mytheme/js/custom
Remember to add this file to the file /sites/all/themes/mytheme/mytheme.info
(function ($) {
Drupal.behaviors.skyFocus = {
attach: function (context, settings) {
var focusClass = "has-focus";
$('.form-text').keyup(function(e) {
if(e.keyCode === 9){
$(this).addClass(focusClass);
}
}
);
$('.form-text').focusout(function() {
$(this).removeClass(focusClass);
}
);
}
};
})(jQuery);
No comments:
Post a Comment