Questions tagged [hyperlink]

A hyperlink is a reference to a document (or a section) that can be followed for retrieval using a navigation system that allows selecting emphasized content within an originating document.

A hyperlink is a reference to a document (or a section) that can be followed for retrieval using a navigation system that allows selecting emphasized content within an originating document. Hyperlinks are typically referred to as simply "links".

In HTML documents, a hyperlink is defined by an a element and is followed by selecting it (usually with a mouse for a desktop computer, or tapping it with touch-screen displays).

Markup for embedding hyperlinks in documents can vary dramatically.

In HTML documents, a codified hyperlink resembles:

<a href="http://www.w3.org">W3C Homepage</a>

In LaTeX documents, a codified hyperlink resembles:

\href{http://www.w3.org}{W3C Homepage}

In Markdown, used on Stack Overflow, a hyperlink can be either an inline link:

[W3C Homepage](http://www.w3.org)

or a reference link:

[hyperlink][1]

where the actual destination is given by a link reference definition somewhere in the document:

[1]: http://en.wikipedia.org/wiki/Hyperlink
18617 questions
4
votes
2 answers

Run Query with links to another query.

I would like the results of the 1st column- Short Name of Funds to be hyper linked to additional details about each record. How would I proceed? Or would it be better just to call a link to a details page where another query will run. That seems a…
John Harbert
  • 197
  • 2
  • 11
4
votes
5 answers

Javascript change text onClick and then change back again

I am trying to change the text of a link on click and then change back again to the original when clicked again. I am able to change the text, (from READ MORE... to CLOSE) but have been fighting to change the text back again (from CLOSE to READ…
user1505573
  • 137
  • 1
  • 2
  • 11
4
votes
1 answer

Set session variable with link_to Rails

Is it possible to set a session variable with a link_to? I don't want to set a parameter, because I have a couple redirects and it gets wiped away. i.e. I want to set a session variable "modelid" to "you" with a link. I want to set a session…
user749798
  • 5,210
  • 10
  • 51
  • 85
4
votes
3 answers

Relative path in virtual directory

I'm migrating an e-commerce app from an old php framework to ASP.NET MVC. Some products have links to other products in their descriptions. I wrote a small app to import everything from the old site to the new site and now I want to update those…
david.s
  • 11,283
  • 6
  • 50
  • 82
4
votes
2 answers

Symfony2 DomCrawler Link

I'm using Symfony2 DOMCrawler. I have a link on page. I want to go thru the link and crawl some content there. How can I do it? LEt the code be like this Go there I know about $crawler->selectLink('Go there')->link();
user1581663
4
votes
5 answers

I have made a simple fragment of html, which contains this:
Something here
It obviously alert me that div cannot be inside an tag. I have used a div, because I want the whole box (div in this case) to be a button. So…
Piotr Ciszewski
  • 1,691
  • 4
  • 30
  • 53
4
votes
1 answer

INDEX_SIZE_ERR when clicking a link with very basic jQuery in Chrome

Getting following error by clicking multiple times on a simple link with some basic jQuery attached to it in Chrome Version 20.0.1132.57: Error in event handler for 'undefined': INDEX_SIZE_ERR: DOM Exception 1 undefined Here's a live demo of the…
Henrik
  • 278
  • 3
  • 12
4
votes
6 answers

How do I make just the image clickable and not the whole div?

This is the mark up I am using. The problem I am having is that the DIV (the whole box) is becoming a hyperlink. I only want the…
Tim Cooley
  • 749
  • 4
  • 19
  • 38
4
votes
3 answers

A tag class not working

I have an A tag I'm trying to add a class to. This is probably really simple stuff but I've never done this before. Find out more about our landscape design services And the CSS: a…
Francesca
  • 26,842
  • 28
  • 90
  • 153
4
votes
2 answers

Making A List Of Links With PHP

I would like to know how to make a list of links appear on my page displaying a name but when you click it, it navigates to the link. I currently know how to make a list and display the items of it using the foreach command and arrays but is there a…
celliott1997
  • 1,115
  • 1
  • 8
  • 17
4
votes
3 answers

How to extract a link from head tag of a remote page using curl

I have some url and all the html of these urls have the following tag in their tag I am using the following code $url…
way2project
  • 99
  • 3
  • 8
4
votes
1 answer

Change internal link labels in Sphinx

I'm generating documentation with Sphinx. I can change the label of links to documents in the table of contents with Features in the toctree directive as per the toctree directive, but how can I do the same for links…
jfoucher
  • 2,251
  • 2
  • 21
  • 29
4
votes
3 answers

Change or rearrange Magento Login and Log Out (top links) position using local.xml

I'd like to rearrange my top links using local.xml--specifically the login/log out links. Is this possible without removing the links then re-adding them and modifying their position tags? Currently (and by default) Log In and Log Out are set to…
cfx
  • 3,311
  • 2
  • 35
  • 45
4
votes
3 answers

Find all hrefs in page and replace with link maintaining previous link - PHP

I'm trying to find all href links on a webpage and replace the link with my own proxy link. For example Google Needs to be Google
Glenn Dayton
  • 1,410
  • 2
  • 20
  • 38
4
votes
3 answers

SQL Server 2012 - Cannot create an instance of OLE DB provider "Microsoft.Jet.OLEDB.4.0" (Microsoft SQL Server, Error: 7302)

I just installed SQL Server 2012 to test differences and make sure it is ok for my Work. I may not be a pro at SQL, but I don't see how to add a Link to Jet database on my server. I have imported Jet Databases, but when going thru the GUI to Link…
Crazyd
  • 406
  • 2
  • 7
  • 15
1 2 3
99
100