I'm trying to trigger the click event on the Valid for and the Begin form fields in this Angular page using Chrome Console, I tried Javascript and jQuery using .click() or .trigger('click') with no luck so far. I'd expect when one of these fields is clicked the relevant dropdown would appear like it would if you manually click it using the mouse. Could someone help please?
Thanks!
$('#ui-datepicker-div').show();
would make the calendar show up – Amontillado$('#from').focus()
and$('#s2id_time_spans > a').trigger('mousedown')
– Centavo