Metadata
- Source
- FLUID-221
- Type
- Bug
- Priority
- Major
- Status
- Closed
- Resolution
- Fixed
- Assignee
- Michelle D'Souza
- Reporter
- Colin Clark
- Created
2008-02-06T17:07:41.000-0500 - Updated
2008-02-11T12:51:49.000-0500 - Versions
-
- 0.1
- Fixed Versions
-
- 0.3
- Component
-
- Reorderer
Description
The jQuery # selector will interpret any special CSS selector characters, such as . or :, as part of the selector. So for example, a query like this will fail unless the id has been escaped first.
<div id="foo.bar" />
jQuery ("#foo.bar");
On the other hand, the following selector will work without requiring the id to be escaped first:
jQuery ("[id=" + "foo.bar" + "]");
The latter selector is probably simpler and easier to implement. Let's use it ubiquitously throughout the Reorderer
Comments
-
Michelle D'Souza commented
2008-02-11T12:51:03.000-0500 There is function called jById in Fluid.js that will get a jQuery DOM node by id using this strategy. I updated the code and markup examples to use this function but did not update all the tests.