Skip to content

Tag: key

Javascript why onClick getting called by enter-key

I’ve got a button with the onClick-event and a textfield with onKeyDown-event. Somehow the button is getting called if I press the enter-key and I don’t know why. Answer When you press Enter in a text field, you trigger a form submission and browsers simulate clicking on the first submit button of…

How to iterate array keys in Javascript?

I have an array created with this code: I want to get each of the values 46, 66, 90 in a loop. I tried for (var key in widthRange) but this gives me a whole bunch of extra properties (I assume they are functions on the object). I can’t use a regular for loop since the values are not sequential.