[jQuery] return a variable after an ajax call

2007-05-15 Thread Paul Malan
Hi all, I'm sorry if this has been answered before; it seems simpler than I'm making it. I am validating a form field on blur by calling a function validateField. This function handles the ajax interaction and passes the response to another function showIcon, which determines which icon to

[jQuery] Re: New plugin: equalize column heights

2007-05-09 Thread Paul Malan
I hope you won't mind that I didn't experiment to learn this answer for myself, but how does your plugin handle content that expands within these equalized divs? For example, if #col2 contains a nested, hidden div, and that div is shown via jQuery. I am using a similar solution right now, but

[jQuery] Re: simple use of dimensions plugin

2007-05-09 Thread Paul Malan
').css(offset); The offset method returns an object with top and left properties. You can pass that object directly into css to set the values. Let me know if I can help clear anything else up! -- Brandon Aaron On 5/9/07, Paul Malan [EMAIL PROTECTED] wrote: I'm sure the dimensions

[jQuery] animate error in IE

2007-04-13 Thread Paul Malan
I'm losing my mind. This simple little bit of code works a charm in Firefox and not IE 6/7: $('#content').animate({className: 'contentNarrow'},1000, function(){ $('#podContainer:hidden').fadeIn(1000); $(#content).load(screens/order.cfm); }); The JS error is useless, even using

[jQuery] Re: table paging and sorting together

2007-04-10 Thread Paul Malan
Matt this looks promising. I hope you'll let the list know when it's been adapted to a jQuery plugin! (And in my experience, sick kids don't mix well with ANYTHING!) On Apr 9, 10:47 am, Matt Kruse [EMAIL PROTECTED] wrote: I am trying to finish up my tablesorting/paging/filtering plugin

[jQuery] Re: table paging and sorting together

2007-04-10 Thread Paul Malan
Jonathan, thanks for taking time to reply with an excerpt from the book. I have to assume that for potentially large recordsets my best bet is to hand off to the server for sorting/paging rather than storing thousands of rows browser-side. Would you agree? On Apr 9, 2:50 pm, Jonathan Chaffer

[jQuery] Re: new plugin - columnManager

2007-04-02 Thread Paul Malan
I think I'll give it a shot in a reporting app I'm building, letting users dynamically show/hide columns that are relevant to the info they are trying to analyze. Thanks for your work, Roman! On Apr 2, 2:25 pm, Roman Weich [EMAIL PROTECTED] wrote: Andy Matthews schrieb: Good job Roman! Works