I'm facing an issue with sending form values to a script. My goal is to have the form values displayed on another part of the page when the user clicks a button. While I can achieve this using PHP or similar web scripting languages by sending the values through a URL like http://www.example.com/myScript.pbp?value1=VALUE, I was wondering if there's a way to do this without reloading the page. Is it possible to show a loading overlay until the script finishes and displays the value on the page?
I believe Javascript or Ajax could be used for this purpose. If anyone could provide guidance or point me in the right direction, I would greatly appreciate it!