html - click a link in 1 frame and browse the link in 2nd frame -


a link should given in 1 frame. when clicked , open in frame.when gave html page link,the code works .but if put web page like: https://www.facebook.com/,then code not working.

why so? code :

frames_example_1 page :

  <frameset cols="200,*" frameborder="0" border="0" framespacing="0"> <frame name="menu" src="menu_1.html" marginheight="0" marginwidth="0" scrolling="auto" noresize> <frame name="content" src="content.html" marginheight="0" marginwidth="0" scrolling="auto" noresize> 

menu_1.html :

menu_1.html  : <p><a href="https://www.facebook.com/" target="content">facebook</a></p> 


Comments