Editor Arrow Download Open
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>window.open() - JavaScript Introduction</title> </head> <body> <form> <input type="button" value="Open New Window" onclick="window.open('content_write.html', '_blank', 'height=300, width=700, resizable=yes');"/> </form> </body> </html>
  Preview Arrow