get url after “#” in express.js middleware request
No. The part of the URL starting with the # symbol is never sent to the server. The # symbol in an URL is to introduce the fragment identifier. This is used to link to a specific part of the page. If a browser loads /#some/url, it will effectively load /, and skip to the … Read more