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

Hi, Is there an element.click() ? e.g. CQ dom = CQ.Create(HTML); dom["#myelementbutton"].click(); If yes, how to implement an element click?

Hi! I love the library. The only issue is that it doesn't seem to have a proxy config to load the url from a proxy. It would really be great...

Warning 1 The currently targeted framework ".NETFramework,Version=v4.0,Profile=Client" does not include "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which the referenced assembly "CsQuery" depends on. This caused the referenced assembly to not resolve. To...

Hi James, I am trying to implement a get parent extension similar to the JavaScript code below: ``` jQuery.expr[":"].getParent = function (node, index, prop, nodes) { return jQuery(node).parent(); }; ```...

Regex replace for attributes would be very useful for replacing inline styles. For example, It is not currently possible to replace a font-size or font-family inline style unless you can...

I'm creating XML files programmatically following a set of rules and other XML files. But I see that the loaded xml string turns to all lowercase. Is there any option...

The test is failed when `elem.RemoveData("Q")` but succeed with `elem.RemoveData("q")`: ``` var elem = CQ.Create(""); elem.Data("Q", "data"); Debug.Assert(elem.DataRaw("Q") == "data"); Debug.Assert(elem.DataRaw("Q") == elem.DataRaw("q")); elem.RemoveData("Q"); //elem.RemoveData("q"); Debug.Assert(elem.DataRaw("Q") == null); //failed! ```...

Hi James, it looks like as it was intended to allow only one single callback pro `success/fail`. Should it not be allowed to add more callbacks? Thanks, Alex

I'm getting the below error occasionally. It's random which is strange. It may work 95% of the time and then fail out of nowhere... ``` var divPricing = this.MyCQ["div.info div.pricing"].FirstOrDefault();...

Is there any way to specify that the Save or Render methods should generate XHTML output? I'm reading in XHTML input document but the output is generated is no longer...