Is it possible to make such an HTTP response that the browser ignores it and continues to display the previously displayed page?
I mean the following scenario:
a) user clicks something
b) some POST is sent to the server (or GET, but let POST be inserted as more interesting)
c) the server decides that for some reason it does not want to send a response at this time
d) the server sends a specially crafted response
e) the browser does not show the error page, does not show the blank page, does not redirect anywhere, does not reload - it just continues to show that it showed as if the user had never submitted the form
PS Of course, it can be wrapped using AJAX, but I ask if a solution without javascript with bare bones is possible
source share