I have a color that appears in my input and textarea fields when they are focused:

This is similar to Chrome, but not Firefox.
I tried changing the color using jQuery:
if ($('body').is('#contact')) { $('input').focus(function() { $(this).css('border', '2px solid #ce1443'); console.log('focus'); }); $('textarea').focus(function() { $('textarea').css('border', '2px solid #ce1443'); }); }
However, this, apparently, only makes the current border bigger ... but it does nothing to get rid of the blue color.
source share