Frame location in java script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abhishekbrave
    New Member
    • Dec 2007
    • 79

    Frame location in java script

    I have created a function to open a link in a frame

    but my frame structure is divided in to 3 rows then 3rd row in two columns and then the second column in 2 rows and then again 2nd row in 2 columns ..
    so i want to know how to specify the column number in the following srcipt after parents.frames[??... any pointers in this regard will be very helpful.

    function changeFrames(ur l1) {
    parent.frames[6].location.href = url1;

    }
  • abhishekbrave
    New Member
    • Dec 2007
    • 79

    #2
    i got the solution of this question by some digging in java scripts documention , for this we have to speify the name with the frames in the html page and then we can refer the frame with then name

    Comment

    Working...