InterviewSolution
| 1. |
How Do I Create A Link That Opens A New Window? |
|
Answer» <a target="_blank" href=...> opens a new, unnamed window. Note that the TARGET attribute is not part of HTML 4 Strict. In HTML 4 Strict, new windows can be created only with JavaScript. LINKS that open new windows can be annoying to your readers if there is not a good reason for them. <a target="_blank" href=...> opens a new, unnamed window. Note that the TARGET attribute is not part of HTML 4 Strict. In HTML 4 Strict, new windows can be created only with JavaScript. links that open new windows can be annoying to your readers if there is not a good reason for them. |
|