How to useonclick property in Javascript

  • This method uses the ‘onclick‘ property of the ‘a’ tag, i.e., whenever the link (‘a’ tag) is clicked, an ‘onclick‘ event is triggered. Here we will use this onclick event to generate a new URL and redirect the user to that URL. (NOTE: This URL will contain the Variable we want to use inside the href attribute) 
  • Now we will set the URL.
  • “location.href” -> It is the entire URL of the current page.
  • “this” -> Refers to the ‘a’ tag that has been clicked.
  • “this.href” -> fetches the href value from the ‘a’ tag.
  • Once we have “this.href”, append the variable to it (Here we have used a variable named “XYZ”).
  • Then we need to append the value to the URL. Now our URL is ready with the variable and its value appended to it.

Example: In the example below, we will append a variable named ‘XYZ’ and its value is 55.

HTML
<!DOCTYPE html>
<html>

<head>
    <title>w3wiki</title>
    <script>
        let val = 55;
    </script>
</head>

<body>

    Link to <a href=
"https://www.google.com/" 
    onclick="location.href=this.href+'?xyz='+val;return false;">
        Google
    </a>

</body>

</html>

Output: This result will be shown in the searchbar.

Resultant Url: https://www.google.com/?xyz=55

How to insert a JavaScript variable inside href attribute?

To insert a JavaScript variable inside the href attribute of an HTML element, <a > … </a> tags are used. One of the attributes of ‘a’ tag is ‘href’.

href: Specifies the URL of the page the link goes to.

Below are the Methods to use Variables inside this ‘href’ attribute: 

Table of Content

  • Approach 1: Using onclick property
  • Approach 2: Using document.write
  • Approach 3: Using Template Literals

Example: 

<a href="https://www.w3wiki.nethttps://www.w3wiki.org/">
w3wiki
// Using href attribute for url.
</a>

Similar Reads

Approach 1: Using onclick property

This method uses the ‘onclick‘ property of the ‘a’ tag, i.e., whenever the link (‘a’ tag) is clicked, an ‘onclick‘ event is triggered. Here we will use this onclick event to generate a new URL and redirect the user to that URL. (NOTE: This URL will contain the Variable we want to use inside the href attribute) Now we will set the URL.“location.href” -> It is the entire URL of the current page.“this” -> Refers to the ‘a’ tag that has been clicked.“this.href” -> fetches the href value from the ‘a’ tag.Once we have “this.href”, append the variable to it (Here we have used a variable named “XYZ”).Then we need to append the value to the URL. Now our URL is ready with the variable and its value appended to it....

Approach 2: Using document.write

When an HTML document is loaded into a web browser, it becomes a document object. This document object has several functions, one of which is written (). write(): Writes HTML expressions or JavaScript code to a document...

Approach 3: Using Template Literals

Template literals are string literals allowing embedded expressions. We can use template literals to dynamically construct the href attribute by directly embedding the JavaScript variable within the URL string....