I have a button on one asp page which calls a function in a js file "java_s.js"having parameter a and b . like this :
<button id="abc" onclick= "LoadContent(a,b)"></button>
Now there is another asp page which contain an iframe in it and show the content of a html page xyz.html like this :
<iframe src="xyz.html"></iframe>
i had included java_s.js file in it . but the problem is when this LoadContent() function is called it is not able to put the content in the div that are defined in xyz.html . So my problem is how to link this js file with the html file .