Here is my current code which does redirecting:
window.location.href= '/post/' + data.main_id + '/' + subject + '#post-' + data.post_id;
Code above just changes the slug when I'm in the same URL. anyway, I need to both change the slug and reload the page. How can I do that by JS or even jQuery?
You can achieve this by first appending the fragment to the URL, then reloading the page:
Note however that you could improve this further by using pushState and avoiding the need to reload the page at all when the fragment changes.