I’m just thinking if there is any way how to get information about element in HTML in my .NET application.
The input is HTML page and path to CSS files etc. I want to take e.g. H1 tag and found what will be the CSS for it. Is there any code or can I use IE and try to take this information from it automatically inside of my application?
I’m just thinking if there is any way how to get information about element
Share
Using jQuery you can easily retrieve it like this:
You can use that for any tag and its associated attributes. You can even add your own if you want.