Like most web developers, I occasionally like to look at the source of websites to see how their markup is built. Tools like Firebug and Chrome Developer Tools make it easy to inspect the code, but if I want to copy an isolated section and play around with it locally, it would be a pain to copy all the individual elements and their associated css. And probably just as much work to save the entire source and cut out the unrelated code.

It would be great if I could right-click a node in Firebug and have a "Save html+css for this node" option. Does such a tool exist? Is it possible to extend Firebug or Chrome Developer Tools to add this feature?

link|improve this question

8  
This tool. Give it to me. – thirtydot Feb 6 '11 at 3:24
Just wanted to add (not a tool as you describe, so not making an answer), if you use chrome you can select an element and look at the "Computed Style" on the right in the css section. You would be able to copy-paste the entire list into a style. It's an extra step from a tool you want, but gives you the css you are looking for. – spencer Oct 18 '11 at 4:04
Pablo Picasso fan? – www.AppTec.net Jan 20 at 15:36
feedback

6 Answers

Webkit browsers (not sure about FireBug) allow you to copy the HTML of an element easily, so that's one part of the process out of the way.

Running this (in the javascript console) prior to copying the HTML for an element will move all the computed styles for the parent element given, as well as all child elements, into the inline style attribute which will then be available as part of the HTML.

var el = document.querySelector("#someid");
var els = el.getElementsByTagName("*");

for(var i = -1, l = els.length; ++i < l;){

    els[i].setAttribute("style", window.getComputedStyle(els[i]).cssText);

}

It's a total hack and you'll have alot of "junk" css attributes to wade through, but should at least get your started.

link|improve this answer
feedback

This can be done by Firebug Plugin called scrapbook

https://addons.mozilla.org/en-US/firefox/addon/scrapbook/

You can check Javascript option in setting

enter image description here

Edit:

This can also help http://www.quarkruby.com/2007/9/5/firequark-quick-html-screen-scraping

Firequark is an extension to Firebug to aid the process of HTML Screen Scraping. Firequark automatically extracts css selector for a single or multiple html node(s) from a web page using Firebug (a web development plugin for Firefox). The css selector generated can be given as an input to html screen scrapers like Scrapi to extract information. Firequark is built to unleash the power of css selector for use of html screen scraping.

link|improve this answer
Scrapbook looks great - unfortunately both the latest version (1.4.5) and a previous one recommended in the reviews (1.4.3) wouldn't work for me on OSX/FF3.6.1. Anyone have this working? – peteorpeter May 16 '11 at 13:17
i wish i could more precisely select a node to save, but this worked pretty well – qntmfred May 22 '11 at 2:39
feedback

A tool with a single solution for this I'm unaware of, but you can use Firebug and Web Developer extension at the same time.

Use Firebug to copy the html section you need (Inspect Element) and Web Developer to see which css is associated with an element (Calling Web Developer "View Style Information" - it works like Firebug's "Inspect Element", but instead of showing the html markup it shows the associated CSS with that markup).

It's not exactly what you want (one click for everything), but it's pretty close, and at least intuitive.

'View Style Information' result from Web Developer Extension

link|improve this answer
feedback

There is a firefox plugin than saves the whole page's HTML, CSS, etc.. but I have not seen one that does a partial save.

https://addons.mozilla.org/en-US/firefox/addon/save-complete-4723/

I remember IE 5.5 had what you were looking for though ;)

link|improve this answer
feedback

I also need this feature on Firebug! Until then, another approach is to use this online service to remove classes and convert the css to inline styles:

http://premailer.dialect.ca/

link|improve this answer
feedback

I've adapted the top voted answer as a dragabble bookmarklet.

Just visit this page and drag the "Run jQuery Code" button to your bookmark bar.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.