vote up 6 vote down star
2

I know that you can use a javascript: pseudo protocol for URLs in an <a> tag. However, I've noticed that Firefox and IE will both allow 'javascript:' to precede javascript code within a <script> tag. Is this valid syntax? Does it change the scoping rules?

Examples: I've seen this many times:

<a onclick="javascript:alert('hello world!');">Hello World!</a>

But is this legal/valid syntax and does it do anything special:

<script type="text/javascript">
javascript:alert('hello world!');
</script>
flag
I'd like to know this as well, plenty of people use/abuse it. Would be nice to know if its proper use or bad abuse. – Allen Feb 18 at 15:45
Can you please explain what you mean with examples? I didn't understand the "I've noticed that firefox and IE will both allow 'javascript:' to precede javascript code within a tag." part. – Rakesh Pai Feb 18 at 15:45
he means <a href='javascript:alert("js code in here");'> alert </a>, you can really do all sorts of crazy stuff with that, like open windows and document.write to them. – Allen Feb 18 at 15:48
Thanks, Allen, but isn't your example a case of the "pseudo protocol for URLs in an tag" thing that Heath mentioned first? Or am I getting it wrong? – Rakesh Pai Feb 18 at 15:58
oh wow yeah i'm dumb, i mis read the question, it appears alot of us did – Allen Feb 18 at 16:05
show 2 more comments

3 Answers

vote up 9 vote down check

Outside of the href attribute (where it is a protocol specifier), name: just creates a label (such as one might use with a continue or break).

See: Do you ever need to specify javascript: in an onclick?

link|flag
::Whacks self on head:: Thanks! – Heath Borders Feb 18 at 16:49
vote up 6 vote down

You need the javascript: "protocol" when you want to put JavaScript in the href attribute of a link.

<!-- does not work -->
<a href="alert('some text');">link</a>

<!-- does work -->
<a href="javascript:alert('some text');">link</a>

<!-- also works -->
<a href="#" onclick="alert('some text');">link</a>

As far as I know (and please, if I'm wrong, someone correct me) there is no difference in scope, but there is a very important difference about this.

<!-- does not work -->
<a href="alert(this.href);">link</a>

<!-- alerts "undefined" -->
<a href="javascript:alert(this.href);">link</a>

<!-- works as expected, alerts "<url>#" -->
<a href="#" onclick="alert(this.href);">link</a>
link|flag
<a href="#" onclick="alert('some text');">link</a> is considered best practice. conceptually, the url bar should be for urls, not scriptlets. javascript: will change the url bar, onclick will not. Good answer though, +1 – Matt Briggs Feb 18 at 15:56
Agreed. Though for some cases, using href="#" will cause your page to jump around. When that happens, I'm OK with href="javascript:;" or href="javascript:void();". – James Socol Feb 18 at 16:06
This is good information, but not an answer to my question. – Heath Borders Feb 18 at 16:49
Sorry, I misunderstood. – James Socol Feb 18 at 17:46
vote up 6 vote down

One thing to consider, our testers would always ding us if we did something like


<a href='javascript:openwindowmethod("url");'> stuff </a>

Rather than


<a href='url' onclick='return openwindowmethod(this.href);'> stuff </a>

The first method would only work if you click on it but not if you shift or alt clicked on it, or right clicked and went to open in a new window.

The second method would support all of that, as well as the ability to function the way it intended if the user just plain clicked the link.

link|flag

Your Answer

Get an OpenID
or

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