I have two applications in two different domain (e.g, www.abc.com and www.abd.com) In first application i have a button. On click of this button I have to pass some value from www.abc.com to www.abd.com.
Note: Due to some reason there is no concept of iframe in any of these application. So we can not go with Window.PostMessage().
I have tried with cookies value, but this is also domain specific. I also tried to store the value in clipboard using JavaScript.
Please help me if any other options I have available for this cross domain message passing.