I\'m trying to get a garish red border around some radio buttons, but it is not showing up in Firefox latest or Chrome latest. Work fine in IE9/IE8.
Each of the inp
Complete code using jquery
https://jsfiddle.net/xcb26Lzx/
$(function(){ $('.layer').css('border',0); $('input:radio').change( function(){ if ($(this).is(':checked')) { $('.layer').css('border','1px solid red'); } }); });