Anonymous 11/22/2022 (Tue) 16:01 Id: a31a07 No.110108 del
>>110059

I know your thinking about querySelector and family but I am talking about data structures not HTML or JSON hierarchies. What would happen if the node didn't have the criteria you were querying or if that node's id, name, or css was based upon those characters ex: id="f/la\g /\po/le" or in dynamic data-property called data-pole? And remember you would get back an Array of hits with built in QuerySelector types.

Can you name me one web application in the world that has an explorer interface on dynamic data nodes? Look at the google api and see that they need a static view of the data and many functions to implement after that is known.


Here is the "only" javascript" library that can do this and guess what? You have to know your static data structure beforehand and must implement dozens of functions. Just read some of the names of the funtions to get an idea of what you have to implement as a dev.

https://google.github.io/closure-library/api/goog.ui.tree.TreeControl.html

and guess what? Doesn't work with python, react, regex, etc... just their library.