Answers for "read html file js"

2

how to open html file with javascript

// In my case, I used a button to activate this function:
function myFunction() {
    window.location.href = 'index.html';
}
Posted by: Guest on November-18-2020
1

read html file node js

const http = require("http");
//use fs module at first to read file 
const fs = require("fs");

const hostname = "127.0.0.1";
const port = 3000;
// simple code to read file using fs module
const files = fs.readFileSync("new.html");

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  // give correct input for html
  res.setHeader("Content-Type", "text/html");
  res.end(files);
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
  console.log("Done")
});
//simple code to make server and read file
Posted by: Guest on December-12-2020
2

open a html file using js

// In case I don't want any buttons or links to open a document
// I just want to open a document
window.open('file.extension');
Posted by: Guest on March-07-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language