Click here to view the fiddle. I am attempting to create a glowing effect on a textbox using onFocus in the input tag. The goal is to make the textbox glow when it is clicked and the border changes color. I have tried writing JavaScript code, but unfortunately, it does not seem to be working properly.
This is my JavaScript code:
function input() {
var x = document.getElementById('input');
x.style.box-shadow = '0 0 30px #96f226';
}