I want to call javascript function (on click()) which is inside Iframe
<a onclick="abc();" href=# >Call Function which is inside Iframe </a>
<iframe id=myFrame>
<script>
function abc(){
alert("I am inside Iframe");
}
</script>
</iframe>
It will be better if there is solution in JQuery.
Thank you