I want to remove the blue color box thing if the form, inputs, select, textarea, button is clicked.
My problem is the blue box color thing is still appear and its annoys me :(.
Is this blue box thing removable by using jquery?
testing link: http://jsfiddle.net/5kcsn/309/
css:
input,
input:focus,
input:active,
input:hover
{
border-color: #ccc;
box-shadow: #ccc;
border: 1px solid #ccc;
outline:none;
}
script:
$("input, select, textarea, form, button").css("outline", "none");
$("input, select, textarea, form, button").css("box-shadow", "none");