Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7051127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:13:36+00:00 2026-05-28T03:13:36+00:00

What is the best way and why? Href? <a href=javascript:helloworld()>link</a> onclick? <a href=# onClick=helloworld()>link</a>

  • 0

What is the best way and why?

Href?

<a href="javascript:helloworld()">link</a>

onclick?

<a href="#" onClick="helloworld()">link</a>

bind by framework (e.g. jquery)?

<a id="foo" href="#">link</a>
…
$('#foo').live('click',helloworld);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T03:13:36+00:00Added an answer on May 28, 2026 at 3:13 am

    It depends. Usually, you should never have a link that does nothing. What if your users have JavaScript disabled, or it fails to load? You must degrade gracefully to have an accessible website. So, for example, if you have a box that loads with Ajax, you should have it link to an alternative page, then bind the handler in unobtrusive, separate JavaScript:

    <a class="loadPage" href="actualPage.php">Go to my page</a>
    

    and in another file:

    $('.loadPage').click(function(e) {
        // Load with Ajax...
        e.preventDefault(); // Stop the link from going through
    });
    

    If the links were generated with JavaScript, then it’s okay to use # as an href most of the time. However, in that case, you should still be attaching the handlers with JavaScript as opposed to setting onclick in innerHTML (*shudder*).

    So, generally: if you have an onclick attribute or javascript: link in production code, right in your HTML, you’re not separating content, behaviour and presentation; you’re not being accessible; and you’re not being semantic. Don’t do it!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best crossbrowser way to make anchor without href (javascript-driven) behave like
I have a jQuery statement as; $(a[target=+iframeId+]).attr(href, url); What is the best way to
Hi Could anyone tell me the best way that I could convert the jquery
What's the best way of handling a favicon.ico in Zend framework? I have seen
I'm basically new to jquery so I'm not sure I did the best way
This is my first day coding and using jquery, I figured the best way
What is the best way to parse html tag like that: <a href=/Results>Results</a> i
Whats the best way to pass data to jQuery AJAX Get method via PHP.
i have a link <a id=cartLink href=https://site.foxycart.com/cart?cart=checkout >Test</a> when you click on this link
I usually have to bind a JavaScript function to an anchor-click event. That is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.