[jQuery] Is there a plugin similar to this Flash effect in Yahoo.com for media images?

2009-11-26 Thread Raymond Ho
Hi guys, I'm looking to develop this plugin in jQuery, or is there already an available version in jQuery for this effect? http://movies.yahoo.com/feature/hmg-weekend-roundup-11-25-09.html I really want the fading effect of the plugin. Please tell me. Thanks

[jQuery] Re: show()ing thousands of divs

2009-09-28 Thread Raymond Ho
3000 divs are freaking huge. it would be better to do it in ajax and load them by chunks instead of putting it all in one huge HTML page. On Sep 28, 6:17 pm, "ryan.j" wrote: > presumably the HTML for these ~3k records are being generated server- > side somewhere - can you not split/group the res

[jQuery] jQuery ajax 404 error

2009-06-02 Thread raymond
Hi, all. I have extremely annoying issue for my project, which made me keeping 3 days on it. I used jQuery.ajax, but it gets all time 404 error, although target url is still available. When I have checked with firebug console, yes, it shows target url with red color, which might mean that no file

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread Raymond Camden
Ticket #4213 http://dev.jquery.com/ticket/4213 On Feb 22, 4:06 pm, Jörn Zaefferer wrote: > Yes, preferably with a little usecase description. Helps providing > appropiate examples. > > Jörn > > On Sun, Feb 22, 2009 at 11:02 PM, Raymond Camden wrote: > > > Should I

[jQuery] Re: Validation - Creating groups on the fly

2009-02-22 Thread Raymond Camden
is case, the groups-option is preprocessed when > initializing the plugin, so just updating validator.settings.groups > isn't enough. > > Jörn > > On Sun, Feb 22, 2009 at 7:24 PM, Raymond Camden wrote: > > > I just played with groups and error placement with the

[jQuery] Validation - Creating groups on the fly

2009-02-22 Thread Raymond Camden
I just played with groups and error placement with the Validation plugin. It worked perfectly. I'm trying to combine it with some code that adds form fields dynamically. The validation plugin has an api to let me add rules, which works fine, but I don't seem to see a way to add groups. Am I missin

[jQuery] Re: [plugin] Tablesorter update

2009-02-17 Thread Raymond Ho
Good Job!! Thanks! On Tue, Feb 17, 2009 at 7:49 AM, soeren.kri...@googlemail.com < soeren.kri...@googlemail.com> wrote: > > Hi, > > i have added some (for me) missing features to the tablesorter plugin: > > - optional ui theme support > - locale support for additional date formats and decimal poi

[jQuery] Re: [Validate] API list for main validator object

2009-02-10 Thread Raymond Camden
Ah ok - when I saw that missing, I assumed more was missing as well. Thank you. On Feb 10, 8:59 am, Jörn Zaefferer wrote: > The documented methods are > here:http://docs.jquery.com/Plugins/Validation#Validator > > numberOfInvalids is missing - I'll add it. > > Jörn >

[jQuery] [Validate] API list for main validator object

2009-02-10 Thread Raymond Camden
One of the demos for Validation shows: var errors = validator.numberOfInvalids(); Going to the main list of methods for validator I do not see this documented anywhere. Where can I find the full list of methods I can call on validator?

[jQuery] Re: list of metadata options?

2009-02-09 Thread Raymond Camden
Ahh, ok. That makes sense then. Thank you! On Feb 9, 10:23 am, Jörn Zaefferer wrote: > Classes for methods with no parameters, attributes for methods with > parameters. Thats it. > > Jörn >

[jQuery] [Validate] Example of custom rule w/ metadata only

2009-02-09 Thread Raymond Camden
I'm trying to work up a demo of a custom validation rule that uses metadata only. I've cobbled the following together but the custom rule never fires: $(document).ready(function(){ jQuery.validator.addMethod("range_exp", function(value, element, params) { return this.optional(element) || ( (

[jQuery] Re: list of metadata options?

2009-02-09 Thread Raymond Camden
To add to this, I'm just playing around, but found that this too works: This is pretty slick, but I'd still like to know what the "official" documentation has to say about this. On Feb 9, 8:36 am, Raymond Camden wrote: > Hmm, although the demo here:http://jquery.bassi

[jQuery] Re: list of metadata options?

2009-02-09 Thread Raymond Camden
Hmm, although the demo here: http://jquery.bassistance.de/validate/demo/ shows this example: So now I'm really confused. On Feb 8, 4:34 pm, Raymond Camden wrote: > Hmm. So a min check is not available since it requires a value, but > url is because it does. I guess that makes se

[jQuery] Re: [Validate] list of metadata options?

2009-02-08 Thread Raymond Camden
Hmm. So a min check is not available since it requires a value, but url is because it does. I guess that makes sense. But is that actually documented though? On Feb 8, 4:17 pm, Jörn Zaefferer wrote: > All documented methods are supported that way, with the exception of > methods that require a p

[jQuery] [Validate] list of metadata options?

2009-02-08 Thread Raymond Camden
I may be missing something obvious. The docs for Validation (http:// docs.jquery.com/Plugins/Validation) are very clear on the JavaScript API. But I'm trying to find documentation on what is supported in metadata. The example uses: Which tells me that this field is required and must be a valid

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
Just a quick last note here (before I move to the UI forum for future UI problems). I switched over to 1.6rc6, and everything worked a heck a lot better. Thanks for the help all. On Feb 1, 12:41 pm, "Richard D. Worth" wrote: > On Sun, Feb 1, 2009 at 1:11 PM, Raymond Camden wrote:

[jQuery] Re: Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
On Feb 1, 11:24 am, "Richard D. Worth" wrote: > All ui-{widgetname} classes are added by UI plugins themselves. So if you're > ever creating markup that contains them, that's not the intended use. I > guess we need to make that more clear on this page. > > > Right away I see that the dialog > >

[jQuery] Problems understanding jQueryUI and Dialogs

2009-02-01 Thread Raymond Camden
Ok, I'm probably missing the obvious here, but I'm having a very difficult time understanding how to use a jQuery UI dialog with a simple theme. First off, I began with the following code: function showDialog(){ $("#example").dialog(); return false; } Show the Dialog

[jQuery] Re: Performance Tuning Help

2008-01-24 Thread Raymond
Thanks to everyone for the suggestions. All were faster than the original but I went with Joel's as it seems to be the quickest. Thanks again!

[jQuery] Performance Tuning Help

2008-01-23 Thread Raymond
I was wondering if anyone knows of a less processor intensive way of doing the following code? I am trying to loop over all classes of a certain type on the page and then append some html that is contained within that particular class. What it is doing to the user is collapsing the search results

[jQuery] Performance Tuning Help

2008-01-23 Thread Raymond
I was wondering if anyone knows of a less processor intensive way of doing the following code? I am trying to loop over all classes of a certain type on the page and then append some html that is contained within that particular class. What it is doing to the user is collapsing the search results

[jQuery] Input Type of Submit Event not working in IE

2007-12-10 Thread Raymond
I am trying to add a click event to all form input's that are type of submit. The following works great in Opera and FF but does not work in IE. I have tried numerous various without success. $('[EMAIL PROTECTED]"submit"]').click(function () { //do stuff }); I have a very similar type of