+ 1
What is the word target in html and what do you use?
3 odpowiedzi
+ 7
target can have _self too. ;)
+ 6
blue give the answer.
+ 5
<form target="_parent" method="GET" action="www.google.com"></form>
The attribute "target" defines where the link( provided in action ) should be opened. target can have two values viz. "_blank" and "_parent". In our case, link will open in parent( same ) window.