[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] General Question RE: Using jQuery with Wordpress

2009-02-05 Thread MH1988
I just wanted to ask in general if using jQuery inconjunction with Wordpress does actually work? I'm pretty sure if jQuery (attached with a jQuery plugin) would work if it was to be included on the frontpage (index.php) but maybe not for individual Wordpress posts? It's has been quite a mountain t

[jQuery] general question

2008-01-22 Thread tlob
Hi! I have a general question. I do a fadeIn/fadeOut with a big logo on the Homepage. If the user surfs back to that site (not later that day, while he is surfing that site), the animation should not shown again. How would you do that? cookies/sessions? I'm looking for the easyest way to impleme

[jQuery] General question regarding AJAX and callbacks

2007-12-13 Thread Rémi Prévost
Hello, I've got the following code: function validateServer(value) { var valid; $.get("validate.php", { "value" : value }, function(data) { valid = (parseInt(data) === 1) ? true : false; } return valid; } As you may have noticed, it doesn't work because the "return va

[jQuery] General Question about Flash and jQuery

2007-10-03 Thread njsuperfreak
Can jQuery talk to flash 9 and vice versa? And is there any examples of this?