Side navigation
#5144 closed bug (invalid)
Opened August 31, 2009 07:04AM UTC
Closed October 27, 2010 10:37PM UTC
Spaces in Selector
Reported by: | spederiva | Owned by: | john |
---|---|---|---|
Priority: | low | Milestone: | 1.4 |
Component: | selector | Version: | 1.3.2 |
Keywords: | Cc: | spederiva@gmail.com | |
Blocked by: | Blocking: |
Description
When you add spaces in the selector you get a Exception.
Error Description:
Line: 19
Error: Exception thrown and not caught.
Error factor example:
$("input[id$ = '_txtInstituteName']")
$("input[id$[SPACE]=[SPACE]'_txtInstituteName']")
Solution, delete spaces:
$("input[id$='_txtInstituteName']")
See also #5073