How to call JavaScript function on button click

In this tutorial I’m going to use button on click when click it should be count.

Example :-

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
  <button onclick="doGet()">Click Here</button>

  <script type="text/javascript">
    console.log('hey im coming');
    function getSheetInfo(){
      const id = 'e90uwqru90aefja1';
      const ss = SpreadsheetApp.openById(id);
      console.log('ss me kya aa rha hai' + ss);
      
    }
    function doGet(e){
      const output = {
        first : 'Laurance',
        last : 'Svekis'
      }
      const strOutput = JSON.stringify(output);
      console.log('what is coming in str output'+strOutput);
    }

  </script>
</body>
</html>

Output :-

Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.

Related Posts

How to use Global Variable using JavaScript in Laravel ?

What is Global Variable ? A global variable is a variable that is defined and accessible throughout the entire program or a significant portion of it, rather…

How to print Object Value using Array in Javascript ?

In this tutorial i’m going to print the object value using javascript ? First go to controller function and put below code. Next go to blade page…

How to Count the Vowels value in array objects ?

Ini this tutorial we’re going to learn how to get the value form array object and count only vowels value. 1st step create below file name Put…

How to print multidimensional array in Console ?

In this tutorial we’re going to learn how to print multidimensional array in console.log Using this I want to print all data whatever coming in log file…

How to remove fake path from url in laravel ?

In this tutorial we’re going to learn how to remove fake path from url in laravel using javascript. Now fakepath removing successfully form url 👍

List of My Blogs Written from May to October 2023

List of My Blogs Written in May 2023 1 How to Show Notification using Sweet Alert in Laravel 9 2 How to use Soft Delete and Restore…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x