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

Is it possible to disable copying CsQuery.XML into build path?

CsQuery.CQ.Create(html)[".someclass>*"].Wrap("<td></td>"); html is like : <div class="someclass"><div></div><span class="p"><span></span></span></div> expected: <div class="someclass"><td><div></div></td><td><span class="p"><span></span></span></td></div> but it's not what I get. I can get it working on jquery.

Bug

CQ document = CQ.Create(html); --- 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. Can...

Hi, I noticed that <option selected="selected" value="">All</option> is being rendered as <option selected="selected" value>All</option> This is causing the following error on my production server (IIS 6): Invalid postback or callback...

Hello, Is there any documentation around Indexing Strategies? I would like to try the different strategies to compare performance but am unsure where to start. Thanks.

Example usage: ``` CQ dom = await CQ.createFromUrlAsyncTask("http://www.google.com"); // dom available here ```

I'm trying to remove all empty paragraph tags, but somehow following code clears my complete dom. Is this a bug? Am I doing something wrong? ``` var dom = CQ.Create(HtmlBody);...

Bug

I have documents which use XInclude for including SVG images. My opening HTML tag looks like: ``` ``` It ends up getting rendered as: ``` ``` This causes the images...

I am using CsQuery 1.3.5-beta5. Tryed it with different HTML document but the result is the same. Code: ``` c# var doc = CQ.Create(TEST_HTML); var el = doc.Find("div > div...

MasterPage code-behind: Class Site Inherits MasterPage ``` Protected Overrides Sub Render(writer As HtmlTextWriter) Amend(Page, AddressOf MyBase.Render, writer) End Sub ``` End Class Part of VB.NET module where I amend the...