[jQuery] Re: (validate)

2009-12-17 Thread eimantas
:29 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Without seeing any of your code is pure guesswork to help you find the issue. I need to see at least the code configuring the validation plugin. Jörn 2009/12/16 eimantas enc.c...@gmail.com Hi guys I'm having trouble

[jQuery] (validate)

2009-12-16 Thread eimantas
Hi guys I'm having trouble with validation plugin from bassistance.de. I have custom handlers for errorPlacement, highlight and unhighlight events. I also have defined custom errorElement. Error messages and validation data is extracted via metadata plugin using html5 data-* attributes. The

[jQuery] Re: Detecting a redirect response to an Ajax query

2009-07-17 Thread eimantas
another solution would be to launch a client-side javascript timeout function that redirects user to login/signup page after session validity time has passed (say, 15 minutes). this way user wouldn't need to be redirected after clicking a link. in one site i saw a similar solution: - user opens

[jQuery] jquery unchecking checkbox?

2009-07-16 Thread eimantas
Hi all I'm implementing the standard select all/none functionality for table rows and got this problem that i can't overcome. I use this code snippet to do selection: $(selAll, tableSelector).toggle( function(e) { $('input[type=checkbox]', tableSelector).attr('checked', 'checked');