I need to use window.open in order to show our own pop up first, with a disclaimer statement that user has to accept before continue. So the flow is:
- User clicks a custom Tweet button.
- We do open a JS popup with a disclaimer statement.
- User can either click “Cancel” or “Continue”.
In the first case we simply close the popup and do nothing in the second we call window.open to show the tweet share popup.
In our case all these actions are required by US Law and that worked just fine until we get a requirement to store the tweet id after user shared it. At the moment I do not see any way to achieve that. Or any other way to show a disclaimer before to show the third party service window to our users?
Any comments, please?