Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Locked Saving webpage having multiple pages

Status
Not open for further replies.
M

Mr. Zsky

Hello guys,
If anyone know how to save a webpage with multiple pages ( so we can access them offline ),
needed some automatic method, already tried many chrome extensions/ searched google but they save only the single webpage and we have to save each page manually
 

mobi0001

The Power Is Yours!!!
Uploader
Power User
✅ Verified Member
Member
Downloaded
62.3 GB
Uploaded
11.3 TB
Ratio
186.25
Seedbonus
1,019
Upload Count
89 (104)
Member for 4 years
Would something like this help?
https://jsfiddle.net/w2eox90g/#&togetherjs=AGDoSdvmVR

Or probably a html code like this:

HTML:
<html>
<head>
<script>
function show(shown, hidden) {
document.getElementById(shown).style.display='block';
document.getElementById(hidden).style.display='none';
return false;
}
</script>
</head>
<body>
   
  <div id="Page1">
    Content of page 1
    <a href="#" onclick="return show('Page2','Page1');">Show page 2</a>
  </div>
   
  <div id="Page2" style="display:none">
    Content of page 2
    <a href="#" onclick="return show('Page1','Page2');">Show page 1</a>
  </div>
   
</body>
</html>

Finally, if nothing works, you can always create a HTML doc like this, and then save it: https://www.w3.org/wiki/Creating_multiple_pages_with_navigation_menus
 
Last edited:
M

Mr. Zsky

Would something like this help?
https://jsfiddle.net/w2eox90g/#&togetherjs=AGDoSdvmVR

Or probably a html code like this:

HTML:
<html>
<head>
<script>
function show(shown, hidden) {
document.getElementById(shown).style.display='block';
document.getElementById(hidden).style.display='none';
return false;
}
</script>
</head>
<body>
   
  <div id="Page1">
    Content of page 1
    <a href="#" onclick="return show('Page2','Page1');">Show page 2</a>
  </div>
   
  <div id="Page2" style="display:none">
    Content of page 2
    <a href="#" onclick="return show('Page1','Page2');">Show page 1</a>
  </div>
   
</body>
</html>
Whats this bro ? ?
 

mobi0001

The Power Is Yours!!!
Uploader
Power User
✅ Verified Member
Member
Downloaded
62.3 GB
Uploaded
11.3 TB
Ratio
186.25
Seedbonus
1,019
Upload Count
89 (104)
Member for 4 years
Whats this bro ? ?
JHTML, or HTML code to make one document/html document. I added one more idea of w3school. Are you familiar with HTML or JHTML?
 

SiteWizard

Uploader
Power User
✅ Verified Member
Member
Downloaded
232.6 GB
Uploaded
31.1 TB
Ratio
137.13
Seedbonus
653,948
Upload Count
12 (12)
Member for 9 years
@Mr. Edward this is depending where you have build you'r website ...
when you have build it online then you can download the complete DIR where your website is standing (save it to your computer or extern hdd )
But when you have make your website on your computer and you need to upload it to your host then you have allready the website .

i make my websites here ad my home / place before i upload them , so i have all my websites here on a extern hdd :)
 

Ranger

FB COMMANDER
👑 Administrator
Downloaded
1.1 TB
Uploaded
258.2 TB
Ratio
233.18
Seedbonus
89,240,040
Upload Count
99 (102)
Member for 3 years
I think @Cyler may help on it . :)
 
M

Mr. Zsky

I think u misunderstood,
Its not my website, there is some other website of which i have to save webpages, since its having multiple pages i have to manually go to each page and save it manually
So, i need a trick or something which can do this for me automatically, (kind of web scraping)
 

Cyler

🤴 Super Admin
⚡OS Master
Downloaded
510.5 GB
Uploaded
24.5 TB
Ratio
49.16
Seedbonus
27,588
Upload Count
1 (1)
Member for 6 years
In order to download a website or parts of it for offline use, you need to use particular tools called site rippers or website parsers.

Try HTTRack for static web pages ( https://www.httrack.com/ ) or ParseHub for dynamic websites ( https://www.parsehub.com/ )
Both are free and open-source tools. If you google about website rippers or parsers you can find many more to test and play with.

Keep in mind a lot depends on how a site was built and in some cases there is no real solution other than saving to PDF using a tool or a website like https://cloudconvert.com/save-website-pdf . The above tools can save an entire or parts of a website as PDF. Since I assume the intent is to read offline, PDF won't really matter.

As always, read the tutorials on how to use the above tools.

Hope it helped.
 
Last edited:
M

Mr. Zsky

Thanks @Cyler got it !!
you can mark this completed
 
Status
Not open for further replies.
Top