Reputation: 2551
I have been using $.support
and what is the use of ownLast
property of this. I searched google and comes with nothing. Could anyone please explain the usage of this?
Upvotes: -1
Views: 59
Reputation: 16214
From the sources...
// Support: IE<9 // Handle iteration over inherited properties before own properties. if ( jQuery.support.ownLast ) {
Upvotes: 1