how to unfocus a button code example
Example 1: remove button highlight on click
.btn:focus {
outline: none;
box-shadow: none;
}
Example 2: js blur element
element.blur()
.btn:focus {
outline: none;
box-shadow: none;
}
element.blur()