Let there be a form on the page, you need to use Javascript and jQuery (console) to force the script to insert the number 1 into this form and send, that is, the essence of the script:

  1. insert the number 1 into the form
  2. push the button.
  • 2
    Javascript and jQuery are different languages ​​if - and ? To get started, learn how to properly deliver a question to people and not to PS bots! - Palmervan pm

1 answer 1

<form> <input /> </form> 

...

 $('form').find('input').val(1).end().submit(); 

Example.