i'm working on a style documentation guide for my company's website,
intended for new hires to the web services team, to learn our styles.
it's similar to the one implemented in jquery's docs section.
unfortunately, it's only deployed locally on our dev branch so i am
not able to give you a demo.

what happens is, i have a content div, that displays a certain style.
for example, let's say the user wants to view the way a ul class named
"ico_check" looks.  inside the content box, there are two more display
boxes- a screen example box, and a html code box.  one contains the
output of the style that the user would see on the screen, the other
contains the html code that's used behind the scenes.  i have a simple
script that's grabbing the example box's code, and displaying it in
the code box.  but in IE it's returning the sizcache and sizset stuff,
as well as ignoring the pre formatting of the code, AND it's
transforming the tag names to uppercase  ...

result in IE..

<UL class=ico_check sizcache="0" sizset="69">
<LI>first item
<LI>second item
<LI>third item </LI></UL>

result in FF...

<ul class="ico_check">
    <li>first item</li>
    <li>second item</li>
    <li>third item</li>
</ul>

I'm also having a problem in firefox with self-closing tags missing
the last '/' .  If there are any workarounds please advise.  Thx


On Apr 3, 2:25 pm, John Resig <[email protected]> wrote:
> Which aspect? Do you have a demo?
>
> --John
>
> On Fri, Apr 3, 2009 at 2:46 PM, sfearl1 <[email protected]> wrote:
>
> > this has still not been fixed
>
> > On Mar 3, 9:34 am, Már Örlygsson <[email protected]> wrote:
> >> > What version of jQuery/Sizzle are you using? A lot of clean-up was
> >> > done recently.
>
> >> Ah... this may very well have been residue from a time when we were
> >> using jQuery 1.3.0 and/or 1.3.1
>
> >> as I seem to be unable to reproduce this on the latest jQuery model.
> >> Nice!!
>
> >> --
> >> Már Örlygsson
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to