Closed GoogleCodeExporter closed 8 years ago
What is the problem with this? Can you give some hint as to what fails ?
Original comment by thetoolman
on 16 Sep 2010 at 11:11
I suspect your problem is that you are not correctly escaping the dots in your
selector:
jQuery("#a\.b\.c\.d").ufd();
should be
jQuery("#a\\.b\\.c\\.d").ufd();
Original comment by thetoolman
on 16 Sep 2010 at 11:14
Original comment by thetoolman
on 16 Sep 2010 at 11:15
"If you wish to use any of the meta-characters (#;&,.+*~':"!^$[]()=>|/@ ) as a
literal part of a name, you must escape the character with two backslashes: \\.
"
http://api.jquery.com/category/selectors/
Original comment by thetoolman
on 16 Sep 2010 at 11:15
Ok, I'll check it once more.
I believe it failed to extend a select element with name containing dots.
Original comment by Eugene.P...@gmail.com
on 17 Sep 2010 at 7:22
It does nothing for jQuery("#a\\.b\\.c\\.d").ufd();
Sorry, that was a misspring in the example
Original comment by Eugene.P...@gmail.com
on 17 Sep 2010 at 7:40
Original issue reported on code.google.com by
Eugene.P...@gmail.com
on 13 Sep 2010 at 9:56