I don't think you need to send JSON. You can submit the form, something like:
The response format could be anything you need, HTML or JSON or ...
Code:
const data = new FormData( adminform );const url = 'index.php?option=com_mycomponent';const options = {method: 'POST',body: data}let response = await fetch(url, options);
Statistics: Posted by ceford — Tue Feb 13, 2024 9:07 am