fragment-identifier Questions

3

Solved

I'm working on a web application that uses onHashChange event listener in some situations and manually clicking on a link with href="#hash" works perfectly well. But when I trigger click on the sam...
Rayleigh asked 3/1, 2017 at 15:53

5

Solved

I am ajax-ifying the pagination in one of me projects and since I want the users to be able to bookmarks the current page, I am appending the page number via hash, say: onclick="callPage(2); windo...
Generalist asked 22/12, 2010 at 11:13

5

Solved

I'm using JSDoc. It generates ids with a period as in <a id=".someMethodName"></a> If another part of the page has <a href="#.someMethodName"></a> That works perfectl...

6

Solved

I know on client side (javascript) you can use windows.location.hash but could not find anyway to access from the server side. I'm using asp.net.
Cassel asked 25/11, 2008 at 15:43

3

Solved

Imagine you are on a page whose URL has a fragment (the part after the #), and click a link to go to another page. Most browsers will send the URL of the original page to the server in the Referer ...

2

Solved

I have the following problem: For example I have route like this: routes.Add(new Route("forums/thread/{threadOid}/last", new MvcRouteHandler()) Defaults = new RouteValueDictionary( new { control...
Stalkinghorse asked 2/3, 2009 at 15:39

4

Solved

I want to make sure that the URL I get from window.location does not already contain a specific fragment identifier already. If it does, I must remove it. So I must search the URL, and find the str...
Epigraphic asked 12/1, 2016 at 20:15

8

Solved

Background: I have an HTML page which lets you expand certain content. As only small portions of the page need to be loaded for such an expansion, it's done via JavaScript, and not by directing to ...
Benniebenning asked 6/11, 2008 at 15:14

1

I have an HTML page with a <base> tag, also containing SVG. Same-document references such as the below within the SVG then fail: <html> <head> <base href="http://my/server/b...
Fulminant asked 26/11, 2011 at 3:4

8

Solved

I'm using JQuery UI to make tabs in my application. I needed the tabs to be linkable (direct link that opens the page and selects the correct tab). This is done by using a hash tag/fragmented ident...

8

Solved

Is it possible to remove the hash from window.location without causing the page to jump-scroll to the top? I need to be able to modify the hash without causing any jumps. I have this: $('<a hr...
Archenteron asked 19/2, 2010 at 11:18

4

Solved

Imagine a Bootstrap collapse with 3 parts <div class="panel-group" id="accordion"> ... <div id="accordionOne" class="panel-heading"></div> ... <div id="accordionTwo" class...
Conclude asked 16/11, 2012 at 8:17

2

Solved

After some digging on the internet I was unable to find a good answer to which characters I may use for URL fragment. I'm writing a javascript-script that will take advantage of URL fragments. I w...
Istanbul asked 28/9, 2014 at 19:37

4

Solved

I'm afraid it might be impossible but is there a way to change the hash value of a URL without leaving an entry in the browser's history and without reloading? Or do the equivalent? As far as spec...

1

Solved

Is there a standard format that allows for multiple parameters to be specified in the URI fragment? (the part after the hash #, not the query string.) The most related information would be this qu...
Gussie asked 19/4, 2014 at 13:13

6

Solved

I've been looking around JQuery libraries for the URL hash, but found none that were good. There is the "history plugin", but we all know it's buggy and isn't flexible. I am loading my pages...
Issue asked 1/3, 2010 at 20:39

3

Solved

I'm using the fragment identifier to create a permalink for AJAX events in my web app similar to this guy. Something like: http://www.myapp.com/calendar#filter:year/2010/month/5 I've done quite ...
Danielldaniella asked 17/5, 2010 at 14:16

0

I'm currently facing a challenge with URL fragments in a single page application. When logging in the user will be redirected through Struts to a url containing a URL fragment / Hash / Anchor - par...

2

Solved

We know the URL itself is not a secure way to pass or store information. Too many programs will perform unexpected processing on the URL or even ship it over the network, and generally speaking, th...
Hebdomad asked 24/12, 2013 at 8:38

1

Solved

In the fragment identifier in a URL, should a space be encoded as %20 like in path or as + like in query string?
Bodiless asked 19/12, 2013 at 10:43

3

Solved

I have a web application which makes extensive use of the fragment identifier for handling "state". examplesite.com/#$mode=direct$aa;map=t;time=2003;vid=4;vid=7 A number of questions: 1) What i...
Triacid asked 26/1, 2010 at 13:16

3

Solved

I have URI that contains ## (e.g. http://foo.com/bar##baz) . Ruby's URI.parse function throws an error when I try to parse it. Are double hash marks forbidden in URIs? Or is the Ruby Parser too st...
Kept asked 11/6, 2013 at 22:57

7

Solved

I just set up my new homepage at http://ritter.vg. I'm using jQuery, but very minimally. It loads all the pages using AJAX - I have it set up to allow bookmarking by detecting the hash in the URL. ...

2

Solved

How do I get the URL fragment identifier from HttpServletRequest? The javadocs doesn't seem to mention it.
Searles asked 21/11, 2012 at 22:38

4

Solved

With all the negative press over Twitter and Gawker's use of hashbang urls I'm having a very hard time finding any examples/libraries for how to actually use them. I'd like to use hashbang urls in...
Residuary asked 16/2, 2011 at 19:48

© 2022 - 2024 — McMap. All rights reserved.