InterviewSolution
Saved Bookmarks
| 1. |
How Do You Target A Specific Frame From A Hyperlink? |
|
Answer» Include the name of the frame in the target ATTRIBUTE of the HYPERLINK. <a HREF=”mypage.htm” target=”myframe”>>My Page</a> Include the name of the frame in the target attribute of the hyperlink. <a href=”mypage.htm” target=”myframe”>>My Page</a> |
|