css - How to open two page in one submit in html? -


hei, want ask html. how open 2 page in 1 click on form action ? try 2 action never work, here use make form:

<form action = "http://www.google.com" method = "get" target = "_blank">  

that use open google when submit, how open 2 site or page in 1 submit ?

i try not work

<form action = "https://www.google.com" action="https://www.facebook.com" method = "get" target = "_blank">  

im sorry im newbie please me find out.

thank much

in form add action property have provide link 1 of html page.

then submit button add onclick property , provide link page opened in new window.

form action="/link/of/your/first/html/page"<br/>  <!--content-->  input type="submit" onclick="window.open('/link/of/second/html/page','other_window') 

hope full.


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -