[Answer]-Is there any simple way to check radio buttons when page loads, based on the what is checked before the page submit?

1👍

Since requests are stateless, you will have to somehow “save” the state of your radio buttons. One option would be to use sessions, the other would be to use a form and instantiate it with the submitted data.

👤Jingo

Leave a comment