this what I have:
fileone.js:
var Find = "Test";
<a href='javascript:folderIs(\""+Find+"\")'>Click me</a href>
filetwo.js
function folderIs(text)
{
alert("its here")
}
filetwo.js is loaded before fileone.js. They are both loaded as <script src=> from the left frame of a 2 frame page.
Error is Object Expected
fileone.js:
var Find = "Test";
<a href='javascript:folderIs(\""+Find+"\")'>Click me</a href>
filetwo.js
function folderIs(text)
{
alert("its here")
}
filetwo.js is loaded before fileone.js. They are both loaded as <script src=> from the left frame of a 2 frame page.
Error is Object Expected
Comment