[jQuery] Documentation for ~= selector

2009-12-29 Thread akzhan
Hello, Take a note that jQuery documentation is incomplete (http:// docs.jquery.com/Selectors). Well known CSS3 selector ~= (http://www.w3.org/TR/css3-selectors/ #selectors) is not documented there. This selector supported by jQuery 1.3. With best wishes, Akzhan.

[jQuery] Re: jQuery.support -- No direct support for IE6 detection

2009-04-05 Thread akzhan
Also I suppose that jQuery.support can add key handling browser mode. WebKit, Mozilla and IE works different on key events. On Apr 5, 8:45 am, Ricardo wrote: > jQuery.support is for feature detection. The whole point of it is to > avoid browser detection - which is still available via jQuery.br

[jQuery] Re: Accessing initialized plugin options from public method (?)

2009-02-20 Thread akzhan
Use $(selector).data() functionality for automatic variables. Or move variable declaration up to function($), if this data are static. On 20 фев, 10:21, Tim wrote: > How do I access options that have already been initialized from a > public method? > example: > > jquery.plugin.js: > (function($

[jQuery] Re: JQuery XML parsing is not working in IE?

2009-02-20 Thread akzhan
How to reproduce this problem? By the way, Json format is more attractive way for data exchange (Json included into core or additional modules of all known Web server platforms)... On 20 фев, 12:02, Samuel wrote: > Is there any solutions for this? I have a similar problem. > > I've added mimety

[jQuery] Re: jQuery Keyfilter Plugin

2009-02-20 Thread akzhan
ovide robust way to filter and validate client input. (at http://bassistance.de/jquery-plugins/jquery-plugin-validation/ ). With best regards,   Akzhan.

[jQuery] Re: jQuery messing with this?

2009-02-20 Thread akzhan
It's common practice to copy this variable to local self (var self = this). And it works fine. $("select.zmiana_daty_wysylki").each(function () { var self = this; /* do some stuff to select */ $('option', this).each(function () { /* operate on each option, and s

[jQuery] jQuery Keyfilter Plugin

2009-02-20 Thread akzhan
This plugin also already uploaded to http://plugin.jquery.com/ I recommend to use it with http://bassistance.de/jquery- plugins/jquery-plugin-validation/">jQuery Validate plugin to provide robust way to filter and validate client input. Of course, server-side validation required too. With best regards, Akzhan.