hello, i have this problem, i am working on this document for example, i have html.htm, and i wanted to insert a row on it, so what i did was this:
var x = document.getElementById('table_2').insertRow (0);
which works well and then i wanted to put an event on it so i did this:
x.onclick = function (event) { return display (); }
my problem is that on the display function, i want to use another document, not html.htm such that when i do this :
function display () {
document.write ('hello');
}
would display on a specific document that i should supply like in html2.htm. how do i do this? do i make html2.htm an argument to the function? but how will i do that? is there any other way to do it aside from making it an argument?
thank you very much!!! i really need all the help i can get...
thanks but when i tried it, it opened on a new window, what i wanted was for it to open an another browser i already have, how do i that, thanks! here is a link for a screenshot of my question, for you to see it more clearly in case my question is a little vague. thanks! http://i76.photobucket.com/albums/j1...ch/image_1.jpg
yes it is in a different frame too, i already found a way to pass my arguments: the frame, the browser name but i don't know what to do with these once i reach my javascript code to execute inside the function. what do i do?
thanks!
Bookmarks