Could any one show me how i can pass variables from one iframe to another iframe ? suppose we got 1iframe, 2iframe and 3iframe in main page. How i can pass variable1 and variable2 from 2iframe to 3iframe so i can use it in 3iframe ? Hope i get some help with this.Thanks
(Note:i am looking for pure javascript solution )
2iframe javascript:
(Note:i am looking for pure javascript solution )
2iframe javascript:
JavaScript:
<a href="javascript: sendTo3Iframe('56876786565345','tryit')">send</a>
function sendTo3Iframe(variable1, variable2)
{
//how to pass variable1 and variable2 to 3iframe?
}