[jQuery] Re: :first-line workaround?

2008-03-03 Thread bweaverusenet
if at all - to > >> recreate with JavaScript. :first-line as well as :link and :visited > >> belog to these... > > >> It may work somehow, but I doubt it would be in any way much > >> reliable. > > >> --Klaus > > >> On Feb 29,

[jQuery] Re: :first-line workaround?

2008-03-03 Thread bweaverusenet
pt. :first-line as well as :link and :visited > belog to these... > > It may work somehow, but I doubt it would be in any way much reliable. > > --Klaus > > On Feb 29, 9:12 pm,bweaverusenet<[EMAIL PROTECTED]> wrote: > > > Klaus, thanks, but I'm talking

[jQuery] Re: Pretty XML?

2008-01-10 Thread bweaverusenet
ill help alot if you can assume the xml will be well formed. Given > the nature of this forum you might also consider a jQuery solution > that iterates (recursively?) through the tree to copy element names > and attributes as xml to a text string. > > George > > On Jan 9, 8:3

[jQuery] Pretty XML?

2008-01-09 Thread bweaverusenet
Hi. Any thoughts on how to take an XML string, transform it into a pretty HTML string, then insert it as an HTML element? Basically, I want something that looks like the IE or FF XML display to be injected into my HTML document. Any ideas? Thanks! -bill

[jQuery] Re: Reload Page?

2007-09-27 Thread bweaverusenet
Your DOM updates won't be sticky, but "to reload the page" you can window.location.reload(). Of course, you seem to be headed in a cleaner direction: just changing the text elements in the DOM directly instead of reloading the page. On Sep 27, 11:23 am, Danjojo <[EMAIL PROTECTED]> wrote: > Is it

[jQuery] Re: Memory leak in 1.1.4?

2007-09-09 Thread bweaverusenet
Any official confirmation of the leak, or comments from the dev team? Thanks! -bill On Aug 28, 2:36 pm, CM-Z <[EMAIL PROTECTED]> wrote: > In IE7 as well as in IE6 there is an memory leak.

[jQuery] Re: Memory leak in 1.1.4?

2007-08-28 Thread bweaverusenet
I can duplicate memory leakage in 1.1.4 with Firefox 2.0.0.6, but have seen it in 1.1.3 and probably before. IE gobbles more memory but eventually releases it. This could be a FF bug, but I haven't had the chance to try duplicating with non-jquery javascript yet. The following has a click that wi

[jQuery] Re: Help serializing form to array

2007-08-28 Thread bweaverusenet
e; > > But I suggest you check out the awesome form plugin: > > http://www.malsup.com/jquery/form/ > > --Erik > > On 8/27/07, bweaverusenet <[EMAIL PROTECTED]> wrote: > > > > > Hi. What is the voodoo to build an array for a JSON submit from a > > bunch

[jQuery] Re: Help serializing form to array

2007-08-28 Thread bweaverusenet
nt objects > > The merge() method is for arrays, whereas parms and {this.id : this.value} > are both objects, which is why you are getting the error. > > > > bweaverusenet wrote: > > > Hi. What is the voodoo to build an array for a JSON submit from a > > b

[jQuery] Help serializing form to array

2007-08-27 Thread bweaverusenet
Hi. What is the voodoo to build an array for a JSON submit from a bunch of form fields? Okay, I'm building the form dynamically from the fields in a mysql DB, with input/@id set to the field name. The following naive approach doesn't work, but will give you an idea of how I'm grabbing what I wan