Config Router

  • Google Sheets
  • CCNA Online training
    • CCNA
  • CISCO Lab Guides
    • CCNA Security Lab Manual With Solutions
    • CCNP Route Lab Manual with Solutions
    • CCNP Switch Lab Manual with Solutions
  • Juniper
  • Linux
  • DevOps Tutorials
  • Python Array
You are here: Home / How to Call a JS function using OnClick event

How to Call a JS function using OnClick event

August 20, 2021 by James Palmer

You are attempting to attach an event listener function before the element is loaded. Place fun() inside an onload event listener function. Call f1() within this function, as the onclick attribute will be ignored.
function f1() {
alert(“f1 called”);
//form validation that recalls the page showing with supplied inputs.
}
window.onload = function() {
document.getElementById(“Save”).onclick = function fun() {
alert(“hello”);
f1();
//validation code to see State field is mandatory.
}
}

JSFiddle

You could use addEventListener to add as many listeners as you want.
document.getElementById(“Save”).addEventListener(‘click’,function ()
{
alert(“hello”);
//validation code to see State field is mandatory.
} );

Also add script tag after the element to make sure Save element is loaded at the time when script runs
Rather than moving script tag you could call it when dom is loaded. Then you should place your code inside the
document.addEventListener(‘DOMContentLoaded’, function() {
document.getElementById(“Save”).addEventListener(‘click’,function ()
{
alert(“hello”);
//validation code to see State field is mandatory.
} );
});

example

Related

Filed Under: Uncategorized

Recent Posts

  • How do I give user access to Jenkins?
  • What is docker volume command?
  • What is the date format in Unix?
  • What is the difference between ARG and ENV Docker?
  • What is rsync command Linux?
  • How to Add Music to Snapchat 2021 Android? | How to Search, Add, Share Songs on Snapchat Story?
  • How to Enable Snapchat Notifications for Android & iPhone? | Steps to Turn on Snapchat Bitmoji Notification
  • Easy Methods to Fix Snapchat Camera Not Working Black Screen Issue | Reasons & Troubleshooting Tips to Solve Snapchat Camera Problems
  • Detailed Procedure for How to Update Snapchat on iOS 14 for Free
  • What is Snapchat Spotlight Feature? How to Make a Spotlight on Snapchat?
  • Snapchat Hack Tutorial 2021: Can I hack a Snapchat Account without them knowing?

Copyright © 2025 · News Pro Theme on Genesis Framework · WordPress · Log in