|
Ok. I want to use the same pop up, to pass value into text input. Each input share the same pop up.
For example:
1) Index.html
<input 1> <a>popUp</a>
<input 2> <a>popUp</a>
<input 3> <a>popUp</a>
2) PopUp.html
<a onclick="document.form[0].....value="aaa">AAA</a>
<a onclick="document.form[0].....value="bbb">BBB</a>
<a onclick="document.form[0].....value="ccc">CCC</a>
Therefore, I can select either AAA, BBB, or CCC for input 1,
AAA, BBB, or CCC for input 2, and the same goes for input 3.
|