0

I tried this example, but there is still a problem - I could not get 'metadata' value. Could somebody show one more example?

Community
  • 1
  • 1
Yara
  • 4,441
  • 6
  • 42
  • 62

1 Answers1

0

That example is working fine for me with version 1.0-rc3

Here's another:

{
    'attr': {'id': 'example1'},
    'data': {
        'attr': {
            'href': '#'
        },
        'title': 'Example'
    },
    'metadata': {
        'hello': 'world'
    }
}

And to retrieve the metadata:

$(node).data('hello'); // world
Steve H
  • 946
  • 9
  • 22