Can I use the following across all browsers?
<a href="#" onclick="doSomething()">Click here.</a>
Is this "bad practice" in regards to standards?
Will it work on IE, FF, Safari and Chrome?
|
Can I use the following across all browsers?
Is this "bad practice" in regards to standards? Will it work on IE, FF, Safari and Chrome? |
|||
|
|
Yes
"Bad practice" and "Standards compliance" are different things. It is standards compliant, but also, for three reasons, bad practice.
Yes |
|||||||||
|
|
Despite some people might say, it's not bad practice (with the caveat that it's the only event listener you want on this element), and it is the simplest (and most prevalent) cross-browser way to add an event listener, but there are two changes I would make to it. First of all, if Javascript is not enabled, the link will be useless (although the Instead, I'd use something like this:
Alternately, if it really is a javascript-only thing, you could make the link hidden by default using CSS and use Javascript to make it visible (so that users with JS disabled won't see a useless link). |
|||
|
|
|
|||
|
|
|
It should work in the browsers you mentioned. Try to get into the habit of putting a
Although it's going to run fine without it, if you make that good habit then you can save yourself trouble later when you write larger scripts. If you don't want the
|
|||
|
|
|
From this Wikipedia page As an aside if it wasn't then most web applications wouldn't work on these browsers. |
|||
|
|
|
It works well actually... One thing I would add is a "return false" which stops the event from propagating:
Otherwise, the browser URL will be updated with a hash mark (#) at the end. With that said, many would argue you should separate JavaScript code from HTML. When the page loads, you can attach events to DOM objects. If you go this route, I highly recommend using a framework such as jQuery. |
|||
|
|
|
It will work on all browsers, but as a best practice most attach with click handlers like jQuery's |
||||
|
|