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<IJSObjectReference>("$", "table");
await jQuery.InvokeVoidAsync("DataTable");
Is this project still relevant?
Now that we can call JQ directly from Blazor with
IJSObjectReference.Example:
JQuery
$('table').DataTable()Blazor