Hi guys I have some radio buttons and do a jquery post on click.
Something like this:
$.post(
"method"
, { value: value },
function
(data) {
alert(data
); });
the value data does have the correct result, but my problem is the page doesn't refresh to that data.
Can someone please let me know the correct way to handle this ?
Thanks !