javascript Programming Glossary: pvt
What's the difference between jQuery.data and jQuery._data ( underscore data )? http://stackoverflow.com/questions/7788353/whats-the-difference-between-jquery-data-and-jquery-data-underscore-data this question jQuery uses _data in order to set the 'pvt' flag for data it stores on the object. The pvt is used so that.. set the 'pvt' flag for data it stores on the object. The pvt is used so that when you request public data from the object.. used so that when you request public data from the object pvt data is not returned. This is to keep jQuery's internal use..
|