jamietre / CsQuery

CsQuery is a complete CSS selector engine, HTML parser, and jQuery port for C# and .NET 4.
Other
1.16k stars 249 forks source link

:nth not supported #200

Open chr4ss1 opened 9 years ago

chr4ss1 commented 9 years ago

Hey, nice work. I like this project more than HtmlAgilityPack, I am still scarred by xPath.

I was using latest CsQuery, and tried to use query which is a long of the lines:

dom["input[type=email]:nth(2)"] which blew up, but is supported by jQuery. I ended up going with dom["input[type=email]"][1], which works, but would be cool to have first syntax aswell.