Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Object {el:: jQuery.fn.jQuery.init[1], <-- JqueryObject
  2. $root: jQuery.fn.jQuery.init[1], <-- JqueryObject
  3. children: Array[2], <-- JavaScript Array
  4. _events: Object, <-- JavaScript Object
  5. fileSystem: FileSystem, <-- Object/Class
  6. id: "project", <-- String
  7. registeredModules: Array[10], <-- JavaScript Array
  8. etc.... <-- And so on..
  9. }
  10.  
  11. 'el'.match('container') <-- checking if the text 'el' contain the text 'container'
  12.  
  13. 'el'[0].'context'.match('container') <-- checking if the text 'context' contain the text 'container'
  14.  
  15. 'el'[0].context.'URL'.match('container') <-- checking if the text 'URL' contain the text 'container'
  16.  
  17. 'el'[0].context.URL[0].match('container') <-- checking if the VALUE in URL contain the text 'container'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement