How to fill another website's form with the data in my own website

10,175

I haven't tried your problem, and this is just an opinion.

If that website is using a get() method, you are saved. You can form a query string in the same format and execute it, else if you are trying to do something like that automatically if there is some captcha check you may fail, and the server will be blocking you thinking it's a DOS attack.

And this is something which may be helpful to you. Javascript communication between browser tabs/windows

Share:
10,175

Related videos on Youtube

Masoud Motallebipour
Author by

Masoud Motallebipour

I’m passionate about using technologies to help facilitate and amplify progressive social movements and have a strong interest in development. I'm Interested in learning more about computer science. I have some experience as software developer in Elixir, NodeJs, Nest, GraphQL, Python, Php, Angular js and Angular.

Updated on October 30, 2022

Comments

  • Masoud Motallebipour
    Masoud Motallebipour over 1 year

    Here is the thing, I have a form in my web site looks like something like this:

    Name: ----

    Last name: ----

    .

    .

    .

    something like this, I work with a site that I have to send this information and type this requests again in that site with the same fields.

    It means I want to copy my forms data to the target website's form with the same fields.

    I do not have the access to target website's codes and I'm just a user there.

    So I want to know if there is a way using Jquery, javascript or anything help me make a button that When I click that the data copy from my site to the target website.

    Is it possible to access another browser's page tab inside another one??!! with jqyery?

    Thank you in advance

    • Shaunak Shukla
      Shaunak Shukla
      You can use cURL...!!! Please refer php.net/curl
    • snrlx
      snrlx
      Maybe I am totally off here but such a copy command should rather be provided by a browser plugin that copies the values among the currently opened tabs.