```javascript
var myParent = el('div', [
  var myChild = el('div')
]);

myChild.hasParent(myParent);
// -> true
```
