Tagged Questions

Hyperlink (or link) is a reference to a document that the reader can directly follow, or that is followed automatically.

learn more… | top users | synonyms

312
votes
33answers
223k views

Href for JavaScript links: “#” or “javascript:void(0)”?

When building a link that has the sole purpose to run JavaScript code, is it better to <a href="#" onclick="myJsFunc();">Link</a> or <a href="javascript:void(0)" ...
27
votes
11answers
68k views

jQuery hyperlinks - href value?

On my website I use jQuery to hook the events of elements, namely hyperlinks. As these hyperlinks only perform actions on the current page, and do not lead anywhere, I have been putting a href ...
26
votes
10answers
1k views

Why is it bad practice to use links with the javascript: “protocol”?

In the 1990s, there was a fashion to put Javascript code directly into <a> href attributes, like this: <a href="javascript:alert('Hello world!')">Press me!</a> And then suddenly I ...
20
votes
5answers
8k views

What is the difference between the different methods of putting JavaScript code in an <a>?

I have seen the following methods of putting JavaScript code in an <a> tag: function DoSomething() { ... return false; } <a href="javascript:;" onClick="return ...
18
votes
3answers
270 views

Why do browsers allow onmousedown JS to change href?

I've noticed for a very long time that when you try to copy a link location or open a link on Facebook, it modifies the link and passes it through l.php. For example, I can be sent to ...
16
votes
7answers
25k views

JavaScript Function in HREF vs OnClick()

I want to run a simple JavaScript function on a click, that is NOT a redirect. Is there any difference or benefit between putting the JavaScript call in <A ...
15
votes
4answers
3k views

Wrong extraction of .attr(“href”) in IE7 vs all other browsers?

Can it really be true that the attr("href") command for a link is handled very different in IE7 in comparison to all other browsers? Let's say I have a page at http://example.com/page.html and I have ...
13
votes
5answers
5k views

What does “javascript:void(0)” mean?

<a href="javascript:void(0)" id="loginlink">login</a> I've seen such hrefs many times, but I don't know what exactly that means.
9
votes
4answers
844 views

Test if links are external with jQuery / javascript?

How do I test to see if links are external or internal? Please note: I cannot hard code the local domain. I cannot test for "http". I could just as easily be linking to my own site with an http ...
9
votes
4answers
3k views

link with href=“#” scrolls page to top when used with jquery slidetoggle

I'm using jquery's slidetoggle to show/hide divs. the element that controls the sliding is a text link ( some text inside <\a>) which has href="#" so it will look like a link (underline, cursor ...
7
votes
3answers
10k views

BASE HREF, javascript, and Internet Explorer vs. Firefox

Queston: IE and Firefox / Safari seem to deal differently with BASE HREF and Javascript window.location type requests. First, is this an accurate description of the problem? What's going on? And ...
6
votes
2answers
135 views

Is there any reason NOT to use src=“//domain.com/file.js”, which is protocol dynamic?

In some of my E-Commerce applications I've started using src="//domain.com/file.js" in cases where I needed to reference externally hosted scripts that I wanted to include. In my E-Commerce ...
6
votes
9answers
6k views

Regex for links in html text

I hope this question is not a RTFM one. I am trying to write a Python script that extracts links from a standard HTML webpage (the <link href... tags). I have searched the web for matching regexen ...
5
votes
2answers
99 views

I can't believe I'm working with frames (facebook)

I haven't dealt with this since the mid 90's. <a href="http://www.google.com" class="learnmorebutton">learn more</a> When I click a link to say http://www.google.com, facebook ...
5
votes
6answers
201 views

PHP URL to Link with Regex

I know I've seen this done a lot in places, but I need something a little more different than the norm. Sadly When I search this anywhere it gets buried in posts about just making the link into an ...
5
votes
1answer
215 views

javascript: fastest way to detect external url's?

What's the fastest method to detect if my_var (=url) is external (eg. compare with location.href)? alert(location.href) // eg. sub.mydomain.com var my_var = "http://www.facebook.com"; Keep it ...
5
votes
3answers
9k views

How to remove “href” with Jquery?

<a id="a$id" onclick="check($id,1)" href="javascript:void(0)" class="black">Qualify</a> After "href" is removed, is "Qualify" still clickable?
4
votes
2answers
133 views

How to use <a href> tag in JTextPane

I have a JTextPane which displays a link to which on click should open a page in the browser. The link is set as a text to the TextPane as shown: <a href=http://www.google.com ...
4
votes
6answers
92 views

Place a variable as a HREF

Basically, is it possible to do something like.... <a href=link onClick="clicked();">Click me!</a> <script> function clicked() { if(myVar == 1) { ...
4
votes
6answers
801 views

Is an empty href valid?

One of our web developers uses the following html as a placeholder for styling a drop down list. <a href="" class="arrow"></a> Is this considered a valid? Since there is no href value, ...
4
votes
4answers
466 views

get all the href attributes of a web site

can anybody tell me a way to get all the href attributes(links) in a web site using javascript?if you could give me a code example, i will be most thankful.
4
votes
2answers
312 views

Why the hash part of the URL is not in the server side?

For example if I type in the URL: http://www.foo.com/page.php?parameter=kickme#MOREURL In the server isn't the part: #MOREURL Is possible to send or get these part to the server without jQuery ...
4
votes
3answers
3k views

Setting xsl:value-of into an href attribute and the text field of a link in an XSLT

I am trying to set an a href that is both a link to and has the text for a link through an XSLT transformation. Here's what it looks like so far. <xsl:element name="a"> ...
4
votes
4answers
6k views

href image link download on click

I generate normal links like: <a href="/path/to/image"><img src="/path/to/image" /></a> in a web app. When I click on the link, it displays the picture in a new page. If you want to ...
4
votes
3answers
2k views

jQuery: Adding text to an existing dynamic HREF

I am trying to amend a link using jQuery. The links are dynamically generated and I have no control over the existing HREF as they are called from a 3rd party site. Using jQuery, how can I change a ...
4
votes
9answers
2k views

Alternatives for using “#” in href attribute [closed]

Possible Duplicate: Href for Javascript links: “#” or “javascript:void(0)”? Hi everyone.... This question has been bugging me for a long time and thought it's time ...
4
votes
2answers
2k views

How to get “raw” href contents in JavaScript

I am trying to write a GreaseMonkey script in which I want to find all of the links that are relative links. It seemed to me that the way to do that would be to match the contents of href against ...
4
votes
3answers
13k views

jQuery attr href, why isn't it working?

I thought the following line of code should work fine: $(".1").attr('href', '#Home'); Right? But why isn't it working when I integrate it with another jQuery script? $(window).bind("load", ...
3
votes
7answers
64 views

buttons with no href, onclick etc

Lately, I've been seeing a lot of sites that have clickable objects that don't have any hrefs or onclicks in their html code. I also tried alerting their href, onclick, onmousedown, onmouseup ...
3
votes
1answer
52 views

Make anchor links refer to the current page when using <base>

When I use the html <base> tag to define a base URL for all relative links on a page, anchor links also refer directly to the base URL. Is there a way to set the base URL that would still allow ...
3
votes
5answers
75 views

Question on using Href

I used the following to display message on clicking HREF <td align="center" style="background-color: #99ccff; border: 1px solid #000;" class="style22"> <a href="" ...
3
votes
2answers
245 views

Facebook Media Attachment - fallback URL for 'music' type?

I'm using Facebook's Legacy REST API to publish MP3 media attachments to users' streams (as the new Graph API does not yet support audio). This renders the audio in Facebook's own media player as ...
3
votes
1answer
135 views

CSS: Style external links

I want to style all external links in my website (Wordpress). I'm trying with: .post p a[href^="http://"]:after But Wordpress put the entire url in the links... So, how could I style all links that ...
3
votes
5answers
1k views

Why use `javascript:void(0)` instead of `javascript:` as an href do nothing placeholder?

I have seen href="javascript:void(0)" and I have seen href="javascript:;" Is there any reason I would not just use href="javascript:" instead? Edit: Let me make it clear: I am combining this with an ...
3
votes
2answers
182 views

PHP String Manipulation: Extract hrefs

I have a string of HTML that I would like to check to see if there are any links inside of it and, if so, extract them and put them in an array. I can do this in jQuery with the simplicity of its ...
3
votes
6answers
83 views

Is there a standard way to link to an external website?

I was taught to do: <a href="http://www.google.com/">http://www.google.com/</a> as opposed to: <a href="http://www.google.com/">Google</a> Is this still the standard ...
3
votes
1answer
170 views

jquery if link = page url

ok pretty simple but i dont know how... i just want to make an active state (probably just make it bold) my menu is ul-li i cant figure out how to write it so if the url matches with one of the ...
3
votes
3answers
155 views

Regex href match a number

Well, here I am back at regex and my poor understanding of it. Spent more time learning it and this is what I came up with: /<a href=\"travis.php?theTaco=([0-9999999])\">(.*)</a> I ...
3
votes
2answers
883 views

HTML: href syntax : is it okay to have space in file name

it has always been my practice that when ever i use images i name them like walls_ico , bu_hover so when i give paths they go like <img src="images/walls_ico.ico" /> <img ...
3
votes
1answer
2k views

jquery change onclick event of href

I have a href element and that has onclick event on it. I want to change the function after some event. I tried using jquery but the old one and new function both are fired. I want only the new one t ...
3
votes
2answers
105 views

Javascript: Creating a 'weird' conditional re-direct

If I had a normal website this would be a simple enough fix... but I've built my site on tumblr so I need a workaround. Every page runs off of the same code, so any solution script is going to run on ...
3
votes
3answers
1k views

javascript add variable onto end of link

I'm trying to add a variable i created on to the end of one of my links but not sure how to do it? <a href="../../availability/default.aspx?propid=' + myvariable + '">Link</a> Any ...
3
votes
1answer
1k views

How to customize the will_paginate link base?

<%= will_paginate(@posts) %> # will generate the links like this '<a href="/posts?page=n">a link</a>' What should I do if I want to change the href base on /contents, etc. <a ...
3
votes
5answers
2k views

What does <a href=“#” class=“view”> mean?

In my html page, I see a link whose 'view source' code is as below : <a href="#" class="view"> I see a valid link when I hover my mouse on it and when I click it, it works. But I am not able ...
3
votes
2answers
474 views

HREF to a .doc file works… an HREF to a .docx does not

Strange... When i create an HREF to a .doc, the browser behaves correctly and onclick allows the user to download the file. If I have an HREF to a .docx, it doesn't prompt to the user to download the ...
3
votes
2answers
223 views

href=“#” redirects to the index page but not to the current page's top

Having an odd problem at the site. Link tag having href="#anything" doesn't move you to the top of the page or to the specified anchor, it moves you to the home page. Thats it - when I hover over the ...
3
votes
3answers
4k views

Add mime type to HTML link

I know how to change the MIME type in a webserver. I used this to make sure the browser downloads my .scrpt file instead of opening the plain text version. So far so good but is it possible to do the ...
3
votes
3answers
234 views

JQUERY href disabling issue

I'm currently working on a home-made full front-office 100% javascript CMS of ours, and I'm having quite a problem. Some of the editable areas the user can edit are contained in href link. These ...
3
votes
2answers
320 views

File:// link doing nothing in all browsers

I have a link being generated that looks like so: <a target="_blank" title="Test" href="file:///c:/test.xls">Test</a> This link is inside an iframe. When I click on it (in any major ...
3
votes
4answers
3k views

HTML: remove a:hover for images?

For text links, I have: CSS: a:link {color: #3366a9; text-decoration: none} a:hover {border-bottom: 1px solid; color: black} But this also adds a black underline on linkable IMGs that I do not ...

1 2 3 4 5 12