I already tried to googled it but nothing helped me.
I want to trigger the following button:
<input class="btn btn_large btn_green" value="Go" type="submit">
If the element would be an id this would work like a charm:
document.getElementById('btn btn_large btn_green').submit();
But since I can't assign an id to this button this isn't working.
Even if I try to call it via
document.getElementsByClassName("").submit();
it isn't working.
Thanks in advance