Hello everyone!
I got several buttons (button plugin) that have css animation,that works with mouse/touch.
But when only have keyboard (desktop) I would like it to simulate the click event (at least play the animation of pressing it).
in construct2 was simple with a plugin from rex.
in JS should be something as:
var button = document.getElementById('Login');
button.click();
but does not seem to work.
thanks in advance.