Is there a way to validate (verify that its constructed correctly) a Sizzle selector without running it?
|
Well, as Russ says, since Sizzle interprets the selector, it cannot validate it without evaluating it. However, you can catch the exception thrown by Sizzle to determine if a selector is valid or not:
Your can test this solution here. EDIT: For the sake of history, my original (and overengineered) answer was: However, it's possible to temporarily override Sizzle's error management in order to extract a boolean value from the error status of its last parse operation. The following solution takes advantage of the fact that jQuery exposes Sizzle through
That can arguably be considered as a horrible hack, but it works: you can test it here. |
|||||||||||||||
|
|
Not quite, the Sizzle engine isn't compiled so the only way to check the validity of the selector is to select it. However, you can do something like this:
|
|||||
|
##ora[or.or lots of other strings. – SLaks May 10 '11 at 15:56