Is it possible to make Http Patch request using only vanilla JavaScript?
I've only done it using 3rd party packages, frameworks before...
I'm building an email using C# .NET
The emailer parses html code as the email content and it renders the string as html code.
I would like to include a button that performs "PATCH" request and processes the response content.
Is it possible doing that with only Vanilla JavaScript?
Thanks