Not sure, if this is intended, but calling `.data()` without arguments creates data object for the given node. ``` > $.hasData($div) false > $($div).data() Object {} > $.hasData($div) true ```