Skip to content

Instantly share code, notes, and snippets.

@hidekiy
Created December 18, 2013 08:59
Show Gist options
  • Save hidekiy/8019348 to your computer and use it in GitHub Desktop.
Save hidekiy/8019348 to your computer and use it in GitHub Desktop.
jQuery.data
> $('#colorbox').data('hoge', 123)
...
> $('#colorbox').data('hoge')
123
> jQuery.expando
"jQuery19107670532537158579"
> $('#colorbox').prop(jQuery.expando)
20
> $.cache[20].data.hoge
123
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment