[jQuery] Re: Selecting a span within a cell

2009-03-02 Thread RWF
thank you so much mkmanning. On Mar 2, 10:25 am, mkmanning wrote: > $('#blah').parents('td').prev().find('span.Validator') > > On Mar 2, 8:14 am, RWF wrote: > > > > > Given this structure: > >

[jQuery] Selecting a span within a cell

2009-03-02 Thread RWF
Given this structure: *hello If i only know the ID of the checkbox input, how can I select the span that has a "Validator" class?

[jQuery] Re: Performance penalty for creating dom element from a string?

2009-01-14 Thread RWF
This also confused me. I tried creating the element as the1.3 docs show (as noted in the OP) and then appending it to a div and it did not generate a closing tag. This is what I did: var image=$(""); image.alt="hello world"; $("#maindiv").append(image); The result was a single without a / like

[jQuery] Re: jsonp to WCF problem

2008-10-24 Thread RWF
ackFunctionName + "(" + > > Encoding.UTF8.GetString(bugger) + ");"; > > _stream.Write(Encoding.UTF8.GetBytes(content), 0, content.Length); > > > In this way you've decoupled the callback functionality from yourWCF > > service(s) but it "jus

[jQuery] Re: jsonp to WCF problem

2008-10-24 Thread RWF
n eval() on yourJSONObject and then call the success method, > passing it the JSON object in the data parameter.  At that point you > will have dot notation on your JSON object. > > On Oct 22, 7:31 pm, RWF <[EMAIL PROTECTED]> wrote: > > > I am using WCF too, have you done

[jQuery] Re: jsonp to WCF problem

2008-10-22 Thread RWF
I am using WCF too, have you done projects that require an $.ajax POST request to a WCF service cross site? If you have, how did come up with a server proxy to allow for cross site communication? On Oct 10, 2:01 pm, tenaciousd <[EMAIL PROTECTED]> wrote: > Nevermind.  The fundamental issue was th

[jQuery] Clarification on the use of JSONP in $.ajax

2008-10-22 Thread RWF
in the docs: http://docs.jquery.com/Ajax/jQuery.ajax#options it says: As of jQuery 1.2, you can load JSON data located on another domain if you specify a JSONP callback, which can be done like so: "myurl? callback=?". jQuery automatically replaces the ? with the correct method name to ca