I have a html code in which i had two javascripts. I want to call the function of 1 javascript into another. Below given is the structure of my javascript.
<html>
<head>
<script>
function a()
{
//function code
this.parent["asd"].b(); //problem in dis line
}
</script>
<body>
<script>
var asd= new Asd();
function b()
{
//function code here
}
</script>
</body>
</html>
It works fine when i use it locally or from a web server. But if i upload this page in my facebook application, the parent class points somewhere else since its inside a iframe. How to resolve it. Is there any other way to call the function.
I have a html code in which i had two javascripts. I want to call the function of 1 javascript into another. Below given is the structure of my javascript.
<html>
<head>
<script>
function a()
{
//function code
this.parent["asd"].b(); //problem in dis line
}
</script>
<body>
<script>
var asd= new Asd();
function b()
{
//function code here
}
</script>
</body>
</html>
It works fine when i use it locally or from a web server. But if i upload this page in my facebook application, the parent class points somewhere else since its inside a iframe. How to resolve it. Is there any other way to call the function.
Share Improve this question asked Sep 21, 2012 at 5:33 Praveen SinghPraveen Singh 5422 gold badges10 silver badges23 bronze badges 2- I think you are new with java script . – Gyan Chandra Srivastava Commented Sep 21, 2012 at 5:44
- yes learning it for the past 1 month – Praveen Singh Commented Sep 21, 2012 at 5:59
6 Answers
Reset to default 4 +50You can:
=> bine both javascripts which you want to use in one
or
=> include a file first of which function you want to use in another javascript so it will automaticall get the value from that javascript file.
Its doesn't matter that you have written function in same script tag or in another it easily called with function name only like below
<html>
<head>
<script>
function a()
{
//function code
b(); //problem in dis line
}
</script>
<body>
<script>
var asd= new Asd();
function b()
{
//function code here
}
</script>
</body>
</html>
It is always better to bine all your Javascript files into one plete js
file. So, you can just merge both your javascript files together. That would also save you from this trouble. You can also see this thread.
Can you try eval("asd").b();
instead of this.parent["asd"].b();
it doenst matter. you can call any function already refered in the HTML as in the same file. because ultimately everything in same page.
Thank u all. i got the solution. i removed the function word from the javascript. now its working fine.