I need to find/create the URL of the page from its regular URL to automatically apply an option from one of the dropdown items.
On a page, various sort options are available under a dropdown, and I need a URL that would automatically load the page with that particular sort option applied already.
For example:
The given page is - https://club.hihonor.com/in/honor%208x/361/forums.htm
When you select the 'latest posts' option in the dropdown, content changes.
I need a URL that I should type in the browser that would automatically load the content with 'latest posts' option applied, replacing the default load style (most recent).
From the source code of the page, we get this:
As the ID of the 'Latest posts' is 4, under ListSelect option, I tried these URLs but none of them worked:
https://club.hihonor.com/in/honor%208x/361/forums.htm?listSelect=4
https://club.hihonor.com/in/honor%208x/361/forums.htm#listSelect=4
https://club.hihonor.com/in/honor%208x/361/forums.htm#list_topic&list-tool&listSelect=4
https://club.hihonor.com/in/honor%208x/361/forums.htm#list_topic&list-tool&list-select=4
You can see I have no knowledge of it and am just guessing stuff. Please tell me what URL would directly load the page with topics sorted by 'latest posts'?