Prevent the browser from following the link : Hyper Link « HTML « JavaScript DHTML






Prevent the browser from following the link


/*
Examples From
JavaScript: The Definitive Guide, Fourth Edition

Legal matters: these files were created by David Flanagan, and are
Copyright (c) 2001 by David Flanagan.  You may use, study, modify, and
distribute them for any purpose.  Please note that these examples are
provided "as-is" and come with no warranty of any kind.

David Flanagan
*/


// This function is suitable for use as an onclick event handler for <a> and
// <area> elements.  It uses the this keyword to refer to the document element,
// and may return false to prevent the browser from following the link.
function confirmLink() {
  return confirm("Do you really want to visit " + this.href + "?");
}

// This function loops through all the hyperlinks in a document and assigns
// the confirmLink function to each one as an event handler.  Don't call it
// before the document is parsed and the links are all defined.  It is best
// to call it from the onload event handler of a <body> tag.
function confirmAllLinks() {
  for(var i = 0; i < document.links.length; i++) {
    document.links[i].onclick = confirmLink;
  }
}

           
       








Related examples in the same category

1.Specifies the output device for the object
2.Link Methods
3.Link 'href' Example
4.Link 'hreflang' Example
5.Link color
6.Link protocol
7.Link 'port'
8.Link 'title' Example
9.Link type
10.Link host
11.Link host name
12.'aLink' Example
13.'hideFocus' Example
14.'vLink' Example
15.'vlinkColor' Example
16.'alinkColor' Example
17.Inserts a link on a text, a picture, a button or a dynamic picture
18.Mouse over an hyper link
19.Get link infomation in a paragraph
20.Validate Link
21.Output link
22.Illustrate how a URL can be referenced
23.Call function in hyper link
24.Change Link Colors
25.Passing Form Value In URL
26.Using JavaScript linkTo Entities
27.Redirect user depending on browser
28.Location: Send the client to a new location (URL/page)
29.URL of a document
30.Change URL and text of a hyperlink
31.Change the target attribute of a link
32.Link focus() and blur()
33.View and change the action URL of a form
34.List the links in a page