Hi John (and the team),

Congratulations on the new release, it's looking great. Can't wait for
1.2...

The only small problem I've had is with an old plugin I've been used
for a while, which adds regular expression selectors:
(function($){
 $.extend($.expr['@'], {
         "=~": "z.match(RegExp(m[4]))!=null",
         "!~": "z.match(RegExp(m[4]))==null"
 });
 $.parse[0] = /^\[ *(@)([a-z0-9_-]*) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/
i;

})(jQuery);

In 1.1.3, $.expr['@'] is null and causes an error.
Has $.expr['@'] been dropped?

Reply via email to