[jQuery] Re: Finding ID within Ajax response

2009-04-13 Thread finco
Just a guess here - is it possible that jquery will not recognize nodes that are loaded after the document is first rendered? Do you need to rebind? On Apr 13, 4:28 pm, Nic Hubbard wrote: > Ok, my test now reflects your suggestions.  But, sadly, none of that > helped, it is still returning unde

[jQuery] Re: General question regarding speed

2009-03-24 Thread finco
> dropping in data on the page since it sort of keeps the HTML out of > > the server-side scripting (as that's usually the source of my AJAX > > responses.) I'd rather have HTML inside my JavaScript coding than in > > my server-side (e.g. PHP, ASP) coding. > > >

[jQuery] General question regarding speed

2009-03-24 Thread finco
I am trying to figure the best way to maximize performance with data returned from ASP pages. Option one - return data in an HTML table. Let the host page's css format the table. Option two - return json data from the asp page and let the browser drop the data into a table and still let the hos

[jQuery] Re: .getJSon

2009-03-14 Thread finco
t;     }); > > >     tableHTML += ''; > > >     $('#placeToInsert').append(tableHtml); > > > > }); > > > > On Mar 14, 12:30 pm, donb wrote: > > > > > If that's all your going to do with it, why not return a table from

[jQuery] .getJSon

2009-03-14 Thread finco
Sorry if this is a duplicate post - doesn't look like the last one went through. I've seen several examples of how to process json data with .each when the field names come over with json. My data, howver, looks like the following: {"aaData": [ ["1001-00-1535.000","Tenant Improvements"], ["1001

[jQuery] JSON Newbie

2009-03-14 Thread finco
I'm new to jquery and json. I've looked at lots of examples of how to process json data but they all seem to have field names that come across in the data and are used in the foreach processing. My data looks like this: {"aaData": [ ["1001-00-1535.000","Tenant Improvements"], ["1001-00-1558.000

[jQuery] Re: Form Plugin

2008-04-30 Thread finco
Is there a way to make this dynamic? I have ~ 100 lines that need to be written into a table of data which a check box indicating status of a project (complete or not). Each checkbox has an id="check1" or "check2" etc. What I'm looking to do is to trigger a function that submits ProcessThe Data.a

[jQuery] Re: Form Plugin

2008-04-29 Thread finco
Thanks - that's what I needed. On Apr 29, 4:34 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > Can someone please point me in the right direction? I am using the > > form plugin and it works great on a form submit action. Is there a > > way I can use it on a click event on a checkbox or onbl

[jQuery] Form Plugin

2008-04-29 Thread finco
Can someone please point me in the right direction? I am using the form plugin and it works great on a form submit action. Is there a way I can use it on a click event on a checkbox or onblur for a text field to immediately save the user's data? Thanks in advance for your help.