Horje
express request url ignores hash Code Example
express request url ignores hash
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 HTML element 
with id="some/url" (if present). The fragment identifier is only relevant 
to the browser, so it is not sent with the HTTP request.

What you however can do, is using client side Javascript to read out the 
value of window.location.hash and send it to the server using 
an XMLHttpRequest.




Javascript

Related
how to use javascript variable inside {{ url_for('static', filename='')}} Code Example how to use javascript variable inside {{ url_for('static', filename='')}} Code Example
javascript browse folder path-limit Code Example javascript browse folder path-limit Code Example
js find :invalid inside div Code Example js find :invalid inside div Code Example
glide.js autoplay Code Example glide.js autoplay Code Example
18002738255 Code Example 18002738255 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8