Modify ↓
Ticket #11508 (closed enhancement: invalid)
$.fn.is() could be enhanced to check existence.
| Reported by: | andy@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | core | Version: | 1.7.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$.fn.is() could be modified slightly to check the existence of the selector parameter. If no parameters are present, it could return this.length > 0 as a nice short-hand.
E.g.
var form = $('form');
if(!form.find(':input.dirty').is())
return;
$.post(form.attr('action'), form.serialize());
A common jQuery newb error is to check a jQuery object for truthiness; of course this fails because an empty jQuery object still exists. $.fn.is() though could could be a quick, easy, and valuable shortcut.
See a duck-punched version in action here: http://jsfiddle.net/bReG4/
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

You can already do this with the .length property.
"if( !form.find(':input.dirty').length )"