Inspecting elements for enumeration and custom html elements #4868
Replies: 2 comments 2 replies
|
Q: along similar lines, I have a series of var liCandidates = (await ulMenu.QuerySelectorAllAsync<HtmlListItemElement>(_S_.Li)).ToArray();But I need to also discern "menu items" from "menu item actions". Both are What I need to know is, does query return a depth first search? Or a breadth first search? That would make a hugh difference, potentially, in whether I could simply parse through the array in sequence, or whether I need to do a bit of LINQ filtering on the |
1 reply
|
I don't have time myself to answer generic HTML/JavaScript/CSS questions. I'd suggest asking on stack overflow or similar. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I consider myself fairly well versed in HTML, elements, fairly proficient at the attributes, styles, and selectors thereby... However, I found what looks to be a custom one, wondered if anyone happened to know what this was...
I know what
<a/>,<img/>, and<span/>are.But what is
<l/>?I am aiming for scraping those bits out for this application, and in its context, for what it is, I think I can probably safely ignore it.
I've heard of the possibility with some versions of HTML of custom elements, but I am not familiar with this one. Was just curious.
Best. 🍻
All reactions