CsQuery icon indicating copy to clipboard operation
CsQuery copied to clipboard

CsQuery is a complete CSS selector engine, HTML parser, and jQuery port for C# and .NET 4.

Results 79 CsQuery issues
Sort by recently updated
recently updated
newest added

CsQuery 1.3.5-beta5 (Prerelease) I think I may have found another occasional error with the .Render() method. I created a CsQuery objects off HTML and when I do a .Render(), occasionally...

When CsQuery tries to parse this xml using CQ dom = xml; `` `` `` `` `` `` I get the following error: System.NullReferenceException: Object reference not set to an...

Update: added stack trace 1. Browse to an internet web page and save the web page to the disk as "aaa.txt". 2. Invoke CQ.CreateDocumentFromFile with the file location succeeds, where...

Hi, First of all great library! I'm trying to retrieve all elements which have an attribute with a value that starts with "resource://" so I can replace the contents of...

``` C# CultureInfo culture = new CultureInfo("tr-TR"); Thread.CurrentThread.CurrentCulture = culture; string script = "alert(\"abc\");"; CQ dom = script; Debug.Assert(dom.Render() == script); ``` dom.Render() returns `alert("abc");` which causes browsers to fail...

I have an application which requires knowledge of where nodes start and end relative to the source HTML content. I know that adding this information would be a bit of...

Enhancement

Hello, I'm using your tool to build a kind of WebGrabber so I have to handle really many cases. One of them is the html document with " tag instead...

Often when you are querying / manipulating the DOM, you would like to associate data you collect / compute as you traverse the DOM for later consumption. This pull request...

Hi This is my code sample, I had removed the site that I tested the code against since it is some intranet environment. So basically what I notice is the...

CsQuery sometimes gives the following error: "Inheritance security rules violated while overriding member: 'CsQuery.Implementation.CombinedTextReader.CreateObjRef(System.Type)'. Security accessibility of the overriding method must match the security accessibility of the method being overriden."...