BlazorQuery
BlazorQuery copied to clipboard
BlazorQuery is a Blazor Library that wraps jQuery completely in C# so that DOM Manipulation, Ajax, etc, can be done directly without leaving the comfort of C#.
Is this project still relevant? Now that we can call JQ directly from Blazor with `IJSObjectReference` . **Example:** _JQuery_ ` $('table').DataTable() ` _Blazor_ ``` var jQuery = await JSRuntime.InvokeAsync("$", "table");...
jQuery.js and blazorQuery.js seem to be missing from Nuget package v0.0.3. Not sure when/how that happened, might have been my mistake. I'll look into it if I have time but...
Is this compatible with Blazor updating the DOM? Wouldn't that override all changes? For example: ```razor @page "/" @inject BlazorQueryDOM DOM @TestVal @code { string TestVal = "TestA"; protected override...