To set a autoclick or auto login, one way is to use this method.
after the </form> insert this code
<script type="text/javascript">
function formAutoSubmit () {
var frm = document.getElementById("31926767765874");
frm.submit();
}
window.onload = formAutoSubmit;
</script>
Where the 31926767765874 value should be replaced with your form ID.
- 0 Users Found This Useful