How to call a function within Frame?

Asked

Viewed 167 times

1

I want to call a function I have inside a iframe. I program in Ionic and wanted to know how to do it through Javascript or HTML.

Inside Javascript I have a variable (Z = 2.5, only one example of same value) of type number. I want to take that variable and move on to the function that’s inside a iframe.

Within the iframe this function only takes and returns a value.

function pegavalor(){
    var url = 2.5; 
    var ff = url; 
    return ff; 
}

Within the iframe still have some calculations that will be made with this value.

How to call this function through Javascript or HTML?

I’ve tried using var index = window.Parent; index.testePai(); and it didn’t work.

  • Matthew, edit your question and put an example of how you are doing so I can help you, I removed my answer again, but in order to help you we need you to create a [mcve].

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.