Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
2k views

How to monitor the changes in the url (Fragment identifier - the anchor portion of a URL )

I'm making a website that tend to handle all the request in one page (Ajax). so i thought that I could trap every user's click on a link and check IF it's on my website i do something on JavaScript ...
2
votes
3answers
2k views

How to use htaccess to rewrite url to html anchor tag (#)

I have a situation where I want to take the following URL: /1/john and have it redirect using Apache's htaccess file to go to /page.php?id=1&name=john#john so that it goes to an html anchor ...
2
votes
2answers
200 views

Accessing Jump Links (the part of the URL after a hasch character, #) from the code behind

Anyone know if it's possible to access the name of a jump link in c# code? I'm doing some url Rewriting stuff and I'm thinking I might not be able to see that part of the URL. So basically, my URL ...
1
vote
1answer
172 views

FormsAuthentication.RedirectFromLoginPage - fragment not preserved on redirect

I have a page, URI looks like this: http://domain.example.com/Profiles/Profile.aspx?username=blah#blahtab When that fragment (#blahtab) is present, some jQuery picks up on that and displays a ...
0
votes
1answer
38 views

UriFragmentUtility causes servlet exception

As i was following this vaadin: https://vaadin.com/book/-/page/advanced.urifu.html tutorial on how to properly uses the UriFragmentUtility, i ended up creating the object and after trying to add this ...
0
votes
1answer
172 views

JavascriptMVC: how do I invoke the Controller's history methods?

JMVC has a History plugin that lets you interact the URL's hash fragment. For example, you can change the #hash part of the URL to make certain actions inside your app bookmarkable, and allow people ...
0
votes
2answers
115 views

Can a search engine link to a certain section of an HTML file?

If I have a page divided in sections/fragments, that are linked to within the page with anchors, like this: <div class="menu"> <a href="#sec1">Section 1</a> <a ...