I'm guessing you're probably talking about The key is... :focus
Resetting the CSS of similar elements.
input[type="submit"]:focus {
outline: none;
box-shadow: 0 0 0;
/* Other CSS reset codes to insert as much as necessary */
}
However, subtracting the effect from the form submission element is an idea that I really don't want to recommend from the perspective of web standards.
If you really don't want it to work, create an image file and run a form submission with the onclick
event for that image. Quite a few game pre-booking pages do that. (I don't know why.)
© 2024 OneMinuteCode. All rights reserved.