I have a problem when I am trying to save web page from browser using "Save as Webpage, complete" some of CSS/Javascript/Image are not saved, thus when I reopen saved page offline webpage can't display properly. How do I solve this?

How do I made webpage can be saved properly from browser ? I don't want to use MHT ext. Because what my situation here is I need to give URL for web designer to launch URL, saved webpage and modify CSS/HTML.

link|improve this question
Why do you need to do this? It seems to me that as long as you have the info, it doesn't matter what it looks like. You could always take a screen shot to preserve the layout. – Joshua Nurczyk Jan 11 '10 at 19:17
feedback

migrated from stackoverflow.com Jan 11 '10 at 15:54

This question came from our site for professional and enthusiast programmers.

6 Answers

From your question i understand the ultimate goal is to send all of your assets for your web page to your designer so they can edit the css, graphics etc.

Could you not just zip up all the assets and email it across to the web designer? If this is your web page then you should already have the assets no?

If you try and use save web page complete, it normally messes with the html code anyway so this would not be useful for your designer.

link|improve this answer
feedback

I had the same issue; if ajax is used in the page, you can't see the saved page properly. (For example, at first div's are hidden (display:none;) after page is loaded all the hidden divs get revealed.)

We need Final HTML code (Javascript functions executed and all data appearing on screen loaded from server)

I used Firebug's HTML tab to grab that Final HTML Code.

Copy the entire "html" branch and doctype declaration paste into a file. Then copy styles and images folders to the same folder.

link|improve this answer
+1: Great use of Firebug. – John H Dec 1 '11 at 14:23
feedback

Have you tried other browsers like Chrome or Opera? IIRC Opera's "Save As" function is quite good.

Like hairbymaurice said, if it's your own web page then you must have the files your designer can edit.

If it's not your web page then why would you want to edit it? Sounds like you're trying to steal/copy the site to me.

link|improve this answer
feedback

You might want to give httrack a shot - while its meant for offline browsing, it probably does what you want - i used to to back up a wiki (of my own) into offline, static pages for reference. Just make sure you select the options correctly - it can do spidering and you obviously want a single page ;)

link|improve this answer
feedback

One solution could be to change all links to the full link of the web site, then when you will "Save as Webpage, complete" all the thinks that will not be saved will be used online.

link|improve this answer
feedback

You can use online Convert Web Page to PDF: http://www.web2pdfconvert.com/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown