[jQuery] Re: :first-line workaround?

2008-03-03 Thread bweaverusenet
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 about jquery selectors. (IE 6 doesn't seem to support the next operator + in CSS, as in h2

[jQuery] Re: :first-line workaround?

2008-03-03 Thread bweaverusenet
much reliable. --Klaus On Feb 29, 9:12 pm,bweaverusenet[EMAIL PROTECTED] wrote: Klaus, thanks, but I'm talking about jquery selectors. (IE 6 doesn't seem to support the next operator + in CSS, as in h2 + p:first- line.) Try the following in FF and IE. The :first-line alert gives

[jQuery] Re: Pretty XML?

2008-01-10 Thread bweaverusenet
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:35 pm, bweaverusenet [EMAIL PROTECTED] wrote: Any ideas? Thanks

[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: Help serializing form to array

2007-08-28 Thread bweaverusenet
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 of form fields? Okay, I'm building the form dynamically from the fields in a mysql DB, with input

[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

[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