About 493,000 results
Open links in new tab
  1. What's "this" in JavaScript onclick? - Stack Overflow

    May 29, 2009 · The value of event handler attributes such as onclick should just be JavaScript, without any "javascript:" prefix. The javascript: pseudo-protocol is used in a URL, for example:

  2. Including both href and onclick to HTML <a> tag - Stack Overflow

    Mar 19, 2019 · The default behavior of the <a> tag's onclick and href properties is to execute the onclick, then follow the href as long as the onclick doesn't return false, canceling the event (or …

  3. javascript - onclick increment number - Stack Overflow

    With JavaScript, how can I do it so when I click a form button it adds 1 to a number? The number it increments could be in a form text field or something. Obviously it'd be on onclick but I'm not s...

  4. How to set onClick with JavaScript? - Stack Overflow

    Nov 30, 2012 · Perhaps my problem is I am trying to set onclick too soon? I am building up an entire div and appending it to the page after the page has loaded. So the page loads, the user …

  5. Pass a string parameter in an onclick function - Stack Overflow

    A couple of concerns for me with respect to using string escape in onClick and as the number of arguments grow, it will become cumbersome to maintain. The following approach will have a …

  6. How to prevent default event handling in an onclick method?

    Aug 14, 2011 · 10 Another way to do that is to use the event object inside the attribute onclick (without the need to add an additional argument to the function to pass the event)

  7. How to get the onclick calling object? - Stack Overflow

    How to get the onclick calling object? Asked 16 years ago Modified 1 year, 2 months ago Viewed 281k times

  8. how to call a onclick function in <a> tag? - Stack Overflow

    Oct 10, 2013 · Because a standard click both activates the link (causing the browser to navigate to whatever URL, even that executes Javascript), and “triggers” the onclick event.

  9. javascript - Using "if/else" with OnClick - Stack Overflow

    First of all, is it even possible to write if/else statements directly in html with onclick attribute? And if so, why is my code not working? So this is a button. The "Calc.Input.value" refers to a

  10. javascript - addEventListener vs onclick - Stack Overflow

    This Stack Overflow page discusses the differences between addEventListener and onclick in JavaScript.