I have a unique issue that I cant seem to find an answer for.
I have a form that submits POST data.
I have a node js server using express routes.
I am access the form data using
var name = req.body.varName
Once the page finished processing and shows the success page, the data that was sent from the form using POST method is still in the network header payload in the client.
How do I clear this POST data?