I am trying to use a form URL with the required token to submit the form automatically.
This is the URL for my local VM...
http://win-vqshqo32af5/Forms/Testing?RequiredValue=Token
I have been trying different variations of JavaScript but have not had any luck.
This is the closest I have come to triggering the submit...
$(document).ready(function(){ $("#form1").trigger('submit'); });
I do not want the user to click a button or any other interaction other that clicking on the URL
Thanks in advance
Jonathan