Loading AI tools
Text after the # in a resource URI From Wikipedia, the free encyclopedia
In computer hypertext, a URI fragment is a string of characters that refers to a resource that is subordinate to another, primary resource. The primary resource is identified by a Uniform Resource Identifier (URI), and the fragment identifier points to the subordinate resource.
The fragment identifier introduced by a hash mark #
is the optional last part of a URL for a document. It is typically used to identify a portion of that document. The generic syntax is specified in RFC 3986.[1] The hash mark separator in URIs is not part of the fragment identifier.
In URIs, a hash mark #
introduces the optional fragment near the end of the URL. The generic RFC 3986 syntax for URIs also allows an optional query part introduced by a question mark ?
. In URIs with a query and a fragment, the fragment follows the query. Query parts depend on the URI scheme and are evaluated by the server—e.g., http:
supports queries unlike ftp:
. Fragments depend on the document MIME type and are evaluated by the client (web browser). Clients are not supposed to send URI fragments to servers when they retrieve a document.[1][2]
A URI ending with #
is permitted by the generic syntax and is a kind of empty fragment. In MIME document types such as text/html
or any XML type, empty identifiers to match this syntactically legal construct are not permitted. Web browsers typically display the top of the document for an empty fragment.
The fragment identifier functions differently to the rest of the URI: its processing is exclusively client-sided with no participation from the web server, though the server typically helps to determine the MIME type, and the MIME type determines the processing of fragments. When an agent (such as a web browser) requests a web resource from a web server, the agent sends the URI to the server, but does not send the fragment. Instead, the agent waits for the server to send the resource, and then the agent processes the resource according to the document type and fragment value.[3]
In an HTML web page, the agent will look for an anchor identified with an HTML tag that includes an id=
or name=
attribute equal to the fragment identifier.
This list has no precise inclusion criteria as described in the Manual of Style for standalone lists. (October 2024) |
text/html
pages such as http://www.example.org/foo.html#bar
the fragment refers to the element with id="bar"
.
:target
CSS pseudoclass.[5] Wikipedia uses this to highlight the selected reference. Notably CSS display: block
can be used to show content only if it is the target, and otherwise hidden by display: none
.name
attribute of the <a>
element served the same purpose, but is now obsolete in favor of the id
attribute, which can be applied to any element. [6]xml:id
or similar id
attributes follow the Name
-syntax and begin with a letter, underscore, or colon. Notably they cannot begin with a digit or hyphen.[7]
http://www.example.org/foo.xml#xpointer(//Rube)
refers to all XML elements named "Rube" in the document identified by the URI http://www.example.org/foo.xml. An XPointer processor, given that URI, would obtain a representation of the document (such as by requesting it from the Internet) and would return a representation of the document's "Rube" elements.http://www.w3.org/2004/02/skos/core#broader
identifies the concept "broader" in SKOS Core vocabulary, but it does not refer to a specific part of the resource identified by http://www.w3.org/2004/02/skos/core
, a complete RDF file in which semantics of this specific concept is declared, along with other concepts in the same vocabulary.text/plain
documents RFC 5147 specifies a fragment identifier for the character and line positions and ranges within the document using the keywords "char
" and "line
", and an integrity check can be added, either "length
" or "md5
".[13] Browser support seems lacking.[14] The following example identifies lines 11 through 20 of a text document:
http://example.com/document.txt#line=10,20
text/csv
documents, RFC 7111 specifies a fragment identifier as a selector for rows, columns, and cells using the keywords "row
" , "col
", and "cell
",[15] For example:
http://example.com/data.csv#row=4
– Selects the 4th row.http://example.com/data.csv#col=2
– Selects 2nd column.http://example.com/data.csv#row=5-7
– Selects three consecutive rows starting with 5th row.http://example.com/data.csv#row=5-*
– Selects all rows starting with 5th row.http://example.com/data.csv#cell=4,1-6,2
– Selects a region that starts at the 4th row and the 1st column and ends at the 6th row and the 2nd column.t
and xywh
, and Media Fragments 1.0 URI (advanced) adds track
and id
.[17] Therefore, one can use the following media fragments URI in the src
attribute of the audio
or video
HTML5 element:
http://example.com/foo.mp4#t=10,20
(this indicates the time interval starting at 10 seconds and ending before 20 seconds)http://example.com/bar.webm#t=40,80&xywh=160,120,320,240
npt:
(Normal Play Time) being the default.#01h25m30s
to start playing at the specified position,[18] and YouTube uses similar code such as #t=3m25s
.[19]location.hash
[20] – JavaScript can be also used with other document types. With the rise of AJAX, some websites use fragment identifiers to emulate the back button behavior of browsers for page changes that do not require a reload, or to emulate subpages.
#/foo
could be used to extract the value from a key-value pair in a document beginning with { "foo": ["bar", "baz"], ... }
application/pdf
documents PDF viewers recognize a number of fragment identifiers.[23][24] For instance, a URL ending in .pdf#page=35
will cause most readers to open the PDF and scroll to page 35. Several other parameters are possible, including #nameddest=
(similar to HTML anchors), #search="word1 word2"
, #zoom=
, etc. Multiple parameters can be combined with ampersands:
http://example.org/doc.pdf#view=fitb&nameddest=Chapter3
.viewBox()
, preserveAspectRatio()
, and transform()
.[25]Several proposals have been made for fragment identifiers for use with plain text documents (which cannot store anchor metadata), or to refer to locations within HTML documents in which the author has not used anchor tags:
#:~:text=foo
will cause the browser to search for foo
, highlight the matching text, and scroll to it. Besides the start and end, the snippet can also specify a context: text that must precede or follow foo
but will not be highlighted (example that uses #:~:text=night-,vision
to find 'vision' preceded by 'night').https://pypi.python.org ... zodbbrowser-0.3.1.tar.gz#md5=38dc89f294b24691d3f0d893ed3c119c
!
. It was used in a now-deprecated approach to index dynamic single-page applications. An exclamation mark is illegal in HTML4, XHTML, and XML identifiers, granting certain degree of separation from that functionality. However, it is allowed in HTML5.[32]
http://example.com/page?query#!state
#!
with ?_escaped_fragment_=
[33]history.pushState()
[35] method.[36]#!s!search terms
. Adding a number after the s (#!s10!
) indicates that the browser should search for the nth occurrence of the search term. A negative number (#!s-3!
) starts searching backwards from the end of the document. A Greasemonkey script is available to add this functionality to compatible browsers.[37]
http://example.com/index.html#!s3!search terms
match
".[38] They also describe a prototype implementation as an extension for the Firefox browser. For example, the following would find the case-insensitive text "RFC" anywhere in the document:
http://example.com/document.txt#match=[rR][fF][cC]
words
" is the first proposal in this scheme.[39] The following example would search a document for the first occurrence of the string "some context for a search term" and then highlight the words "search term":
http://example.com/index.html#:words:some-context-for-a-(search-term)
#FWS+C
, where F is the length of the first word (up to five characters), W is the first word itself, S is the length of the selected text and C is a 32-bit CRC of the selected text.[42] They implemented a variant of this scheme as an extension for the Firefox browser,[43] using the form #LFWS+C
, where L is the length of the fragment itself, in two hex digits. Linking to the word "Fragment" using the implemented variant would yield:
http://example.com/index.html#115Fragm8+-52f89c4c
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.