Skip to content Skip to sidebar Skip to footer

Remove Frames And Loading Content Into The Div

Is there anyway i can unload a page that has been loaded inside an iframe? it likely removing the windows and loading content from other pages into the div? I am using iframe on my

Solution 1:

In the last line of code where the new iframe source is set, you're using the href attribute instead of the src. Since iframe does not have an href attribute, that would explain the lack of results.

top.frames[frame].src  = '../patient_file/encounter/encounter_top.php?set_encounter=' +     enc;

Try changing to that and see if it works.

Post a Comment for "Remove Frames And Loading Content Into The Div"