I have heard many times that using JavaScript events, such as onClick(), in HTML is a bad practice, because it's not good for semantics. I would like to know what the downsides are and how to fix the following code?

<a href="#" onclick="popup('/map/', 300, 300, 'map'); return false;">link</a>
link|improve this question

4  
2  
There's nothing wrong with the onlickc, but by making the href #, anyone who chooses to have javascript disabled will be stuck and unable to do anything. For some sites that's a good thing, but for simply opening a window, it's outright stupid to not provide a "real" link. – Marc B May 3 '11 at 15:21
1  
Definitely read that link. It has very little to do with semantics, and more to do with ... all the stuff on that page :-) – morewry May 3 '11 at 15:21
feedback

6 Answers

up vote 24 down vote accepted

You're probably talking about unobtrusive Javascript, which would look like this:

<a href="#" id="someLink">link</a>

with the logic in a central javascript file looking something like this:

$('#someLink').click(function(){
    popup('/map/', 300, 300, 'map'); 
    return false;
});

The advantages are

  • behaviour (Javascript) is separated from presentation (HTML)
  • no mixing of languages
  • you're using a javascript framework like jQuery that can handle most cross-browser issues for you
  • You can add behaviour to a lot of HTML elements at once without code duplication
link|improve this answer
Michael, great thanks for detailed response. – NiLL May 3 '11 at 15:31
You have listed the quite a few advantages, but what about the disadvantages? Debugging blue smoke? – abelito May 21 '11 at 14:42
The wiki article has a one liner about criticisms, though it does link to a great article that is 75% advantages, and 25% disadvantages. – abelito May 21 '11 at 14:57
feedback

If you are using jQuery then:

HTML:

 <a id="#openMap" href="/map/">link</a>

JS:

$(document).ready(function() {
    $("#openMap").click(function(){
        popup('/map/', 300, 300, 'map');
        return false;
    });
});

This has the benefit of still working without JS, or if the user middle clicks the link.

It also means that I could handle generic popups by rewriting again to:

HTML:

 <a class="popup" href="/map/">link</a>

JS:

$(document).ready(function() {
    $(".popup").click(function(){
        popup($(this).attr("href"), 300, 300, 'map');
        return false;
    });
});

This would let you add a popup to any link by just giving it the popup class.

This idea could be extended even further like so:

HTML:

 <a class="popup" data-width="300" data-height="300" href="/map/">link</a>

JS:

$(document).ready(function() {
    $(".popup").click(function(){
        popup($(this).attr("href"), $(this).data('width'), $(this).data('height'), 'map');
        return false;
    });
});

I can now use the same bit of code for lots of popups on my whole site without having to write loads of onclick stuff! Yay for reusability!

It also means that if later on I decide that popups are bad practice, (which they are!) and that I want to replace them with a lightbox style modal window, I can change:

popup($(this).attr("href"), $(this).data('width'), $(this).data('height'), 'map');

to

myAmazingModalWindow($(this).attr("href"), $(this).data('width'), $(this).data('height'), 'map');

and all my popups on my whole site are now working totally differently. I could even do feature detection to decide what to do on a popup, or store a users preference to allow them or not. With the inline onclick, this requires a huge copy and pasting effort.

link|improve this answer
2  
Works without JavaScript?? It's jQuery. It needs Javascript enabled on the browser to work, right? – Thomas Shields May 3 '11 at 15:18
2  
Yes, but the link can redirect to a page performing the action without JavaScript in this case. – ThiefMaster May 3 '11 at 15:20
5  
The link works without JavaScript. See how the link has a normal href attribute. If the user doesn't have JavaScript the link will still be a link and the user can still access the content. – morewry May 3 '11 at 15:20
3  
@Thomas Shields: No, he means that if you don't have Javascript, the link will still take you to /map/... – Robert May 3 '11 at 15:20
2  
Ah Rich! We all love you for this niftiest solution! – Nirmal May 3 '11 at 15:57
show 6 more comments
feedback

There are a few reasons:

  1. I find it aids maintenence to separate markup, i.e. the HTML and client-side scripts. For example, jQuery makes it easy to add event handlers programatically.

  2. The example you give would be broken in any user agent that doesn't support javascript, or has javascript turned off. The concept of progressive enhancement would encourage a simple hyperlink to /map/ for user agents without javascript, then adding a click handler prgramatically for user agents that support javascript.

For example:

Markup:

<a id="example" href="/map/">link</a>

Javascript:

$(document).ready(function(){

    $("#example").click(function(){
        popup('/map/', 300, 300, 'map');
        return false;
    });

})
link|improve this answer
feedback

It's not good for several reasons:

  • it mixes code and markup
  • code written this way goes through eval
  • and runs in the global scope

The simplest thing would be to add a name attribute to your <a> element, then you could do:

document.myelement.onclick = function() {
    window.popup('/map/', 300, 300, 'map');
    return false;
};

although modern best practise would be to use an id instead of a name, and use addEventListener() instead of using onclick since that allows you to bind multiple functions to a single event.

link|improve this answer
feedback

It's a new paradigm called "Unobtrusive JavaScript". The current "web standard" says to separate functionality and presentation.

It's not really a "bad practice", it's just that most new standards want you to use event listeners instead of in-lining JavaScript.

Also, this may just be a personal thing, but I think it's much easier to read when you use event listeners, especially if you have more than 1 JavaScript statement you want to run.

link|improve this answer
1  
The Wikipedia page on the subject is over 4 years old. It isn't a new paradigm any more. :) – Quentin May 3 '11 at 15:26
@David: It may not be "new", but there are people still not using it, so it's "new" to them. – Rocket May 3 '11 at 15:28
feedback

Your question will trigger discussion I suppose. The general idea is that it's good to separate behavior and structure. Furthermore, afaik, an inline click handler has to be evalled to 'become' a real javascript function. And it's pretty old fashioned, allbeit that that's a pretty shaky argument. Ah, well, read some about it @quirksmode.org

link|improve this answer
I don't wanna create once more holy war, I'm trying to find true :\ – NiLL May 3 '11 at 15:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.