In my polymer.dart component I want to access the shadow dom with jquery. In dart I can access f.e. an node´s id like this:
$["testname"].attributes["id"]
or
shadowRoot.querySelector("#testname").attributes["id"]
How is this done with jquery
context.callMethod(r'$', ['#testname'])["id"]
does not work obviously.