attribute name selection

Solutions on MaxInterview for attribute name selection by the best coders in the world

showing results for - "attribute name selection"
Alexandre
09 Jan 2017
1document.evaluate(
2  '//*[starts-with(name(), "custom-")]',
3  document, 
4  null, 
5  XPathResult.UNORDERED_NODE_ITERATOR_TYPE, 
6  null
7)
8
Tidiane
18 May 2016
1document.evaluate(
2  '//*[@*[starts-with(name(), "data-custom-")]]',
3  document, 
4  null, 
5  XPathResult.UNORDERED_NODE_ITERATOR_TYPE, 
6  null
7)
8