How to open a page inside a page?
hi buddies,
How can i open a page inside a page? I mean just like click a link in this page, and then the old content will be replaced by the content of the new page?
Any help will be appreciated!!
anybody please?
Hello Jeff,
Well depending on how you want to implement this kind of functionality, this can be achieved by using the open method in Javascript. More specifically, you can define how you want to open the new page with the following options:
· _blank - URL is loaded into a new window. This is default
· _parent - URL is loaded into the parent frame
· _self - URL replaces the current page
· _top - URL replaces any framesets that may be loaded
I have included a link to the Open() method in Javascript.