About 1,940,000 results
Open links in new tab
  1. How to save HTML pages as one file? - Stack Overflow

    I want to be able to save / archive HTML pages as one file (without those pesky external folders). I want the resulting file to contain all styles, images, and links (videos and Flash would be nice...

  2. Using HTML5/JavaScript to generate and save a file

    May 24, 2010 · Another option to save client-side generated files, is to put their contents in a Blob (or File) object and create a download link using URL.createObjectURL(blob).

  3. Save HTML locally with Javascript - Stack Overflow

    The only way to save data locally with Javascript seems to be with cookies, localStorage, or allow the user to download a file (with a "Save..." dialog box or to the browser's default Download …

  4. how can i save the current HTML page locally via a button on page?

    Jan 5, 2017 · If you need a download button that anyone can use on your site to save a file, use the download attribute.

  5. Create and save a file with JavaScript - Stack Overflow

    Where the function takes in data, has the user select a location to save the file, and creates a file in that location with that data. Using HTML is fine too, if that helps.

  6. save plotly plot to local file and insert into html

    Learn how to save Plotly plots locally and embed them into HTML files for seamless integration.

  7. How to save "complete webpage" not just basic html using Python

    Jan 25, 2013 · Problem: This code saves html as basic html without javascripts, images etc. I want to save webpage as complete (Like we have option in browser) Update: I am using …

  8. Save the current webpage in a single html file format

    Sep 6, 2022 · I am working on a project where at some point I want to add the functionality of saving the current webpage as HTML, also in pdf, I am saving page in pdf format by this …

  9. Save HTML of some website in a txt file with python

    I need save the HTML code of any website in a txt file, is a very easy exercise but I have doubts with this because a have a function that do this: import urllib.request def get_html(url): f=...

  10. javascript - Saving html form data to file - Stack Overflow

    Jan 26, 2015 · As a beginner at this time, I would like to save only text information in text-file simply from html form. Below I am writing simple example with simple html form and …