On 18/08/06, Stephen Howard <[EMAIL PROTECTED]> wrote: > Yeah, I had suggested returning an explicit false from your each > function should short circuit. It was an easy add to the jquery source > too, but I believe jq 1.0 is in feature freeze at the moment. > > -Stephen >
I use return to continue the loop (as 'continue' does not work). What may work is using 'return false' to break the loop and 'return true' to continue it. _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
