Here is the case.
====UPDATED MESSAGE====== 1. I work with a CRM web based program and when the case closed, it´s necessary the user to click in a button to fill up a survey in an external system in a new tab using the same browser. The first field of the survey is "Customer-id". This ID is huge and people dont have enough time to fill up the survey, so the user types manually the ID and is almost always wrong. The goal here is to send the customer-id automatically from the CRM to the Survey System. although I do not have control of the code of the CRM, but I can control of the code in the Survey system wich allows me to insert JavaScript for example.
The right thing to do is to integrate both systems with an API wich the Rest API cost a lot and the process is very bureaucratic and it can take even a year for that. Then I got the task to find one work around.
The workaround I have found was: 1. The user clicks in a button and this button opens a new tab (TAB2). 2. The new tab opens the Survey system and run a JavaScript or wherever that could go back to the previous tab(TAB1), find the field (I have the field name), copy the value, open the TAB2 and paste the value in the "Customer-id" field automagically. This value can be passed by url for example (Survey-System-URL?custumer-id=43536453463 or in another way.
Is there anyway to do that?
Thank you in advance for the help.
=====OLD MESSAGE====== 1. The user clicks in a button and this button opens a new tab. 2. I need to send the value from one field of the first tab to a field in the second tab.
I can send the value via JavaScript without problem. But how can I capture the value from the first tab after the second is opened? The browser used is this experience must be Internet Explorer.