Automatic node finding
Like jQuery with its $
function, Polymer also has a very handy way to locate nodes in the DOM of the page. This recipe shows you how to use it. You can find the code in the project find_nodes
.
How to do it...
- The script starts with
web\index.html
, where a component with the namefind-nodes
is imported through the following line:<link rel="import"href="find_nodes.html">
From this, we know that the component is defined in
find_nodes.html
, and the code behind it is in a file namedfind_nodes.dart
. For a discussion of the other tags, refer to the first recipe. - The code for
find-nodes
is defined infind_nodes.dart
:import'dart.html'; import'package:polymer/polymer.dart'; @CustomTag('find-nodes') classFindnodes extends PolymerElement { Findnodes.created() : super.created(); btnclick(MouseEvent e, var detail, Node target) { // making the paragraph visible: $['show'].style ..display = &apos...