Here is my situation. I have a webpage (not quite finished):
http://grapplingbasics.com/beta.php
I have a page slide for a specific div that puts a hash url in the url string. If a user links to this URL, he may be taken to that particular part of the page.
However, I would like them to hit this part of the page and upload a specific video with a single address.
It seems that you cannot put the query string and hash together like this: www.blah.com/index.php#BLAH?neat=one
I initially tried to turn the hash into part of the query, and then using split in jquery to assign it to a hash on the fly. However, the problem with this is that if I return false to the navigation, it will not show the query string in the URL bar, and if I do not return the false, then it will want to go to something that is not there!
What is the possible solution here?
source
share