Hey there.  I'd like to start out by saying I'm new to jQuery, so if I
am not making sense, please let me know.  I'm creating a sort of style
guide to my website for viewers to look up the current styles used on
the site.  Kind of like the jQuery docs section actually.

I currently have it set up to display an example, and the HTML of the
example, using a simple little script that grabs the html out of the
specified div I'm using for the examples.  I would also like to add a
css function that returns the css from the stylesheet of that
particular object I'm displaying.  So if I wanted to display what the
H1 tags look like it would go something like this

H1 Tag

  HTML

    <h1>This is an H1 Tag</h1>

  Example

    This is an H1 Tag

  Css

    h1 {
      .....
    }

Of course it looks a lot prettier than that but you get the jist of
the idea.  How would I go about traversing the CSS and grabbing that
style associated with the current example, then returning that
style?

Reply via email to