Create Anchor Element in polymer
问题 Is it possible to create an element that will be used as an anchor in polymer. So for example <template repeat="{{ content in contentitems }}"> <div id="{{ content.id }}">{{content.stuff}}</div> </template> Would it be possible to create a hyperlink to the content#id anchor like http://example.com/#someid Alternatively, we can query that element with querySelector like the below and then scroll it into view if necessary with JavaScript. I'd rather not have to use a JS router however for