up vote 33 down vote favorite
14
share [g+] share [fb]

On December 1, 2009, Google announced support for asynchronous Google Analytics tracking.

The asynchronous tracking is achieved using the async directive for the <script> tag.

Which browsers support the async directive (<script async="async" />) and since which version?

link|improve this question

It's right on that page you linked to: "Firefox 3.6 is the first browser to officially offer support for this new feature" FWIW it's an HTML5 feature, which is quickly gaining better and better support. – Crescent Fresh Dec 2 '09 at 16:30
15  
The HTML5 spec says that async="true" is illegal. As a boolean HTML attribute, the presence of the attribute indicates "true", while the absence of the attribute equals "false". If the attribute is present, the only valid values for the attribute are "" and "async". – Joel Mueller Dec 2 '09 at 17:51
feedback

8 Answers

up vote 19 down vote accepted

The async support as specified by google is achieved using two parts:

  • using script on your page (the script is supplied by google) to write out a <script> tag to the DOM.

  • that script has async="true" attribute to signal to compatible browsers that it can continue rendering the page.

The first part works on current browsers. The second part only affects Firefox 3.6. However, the first part also allows rendering before waiting for ga.js to be retrieved from google.

EDIT: 8/16/2011: The support aspect was only true as of this writing. See this answer for updated support information.

link|improve this answer
3  
I'm not sure you even need async="true", you can just write 'async' – vsync May 4 '10 at 14:36
so if i generate the script tag like google does it - what would be correct: var s = document.createElement('script'); s.async='true';s.async=true; (google does it that way) or s.async='async'; ? – Tobias Oct 28 '10 at 1:03
2  
@Tobias: you're intermingling HTML boolean attributes and the corresponding DOM element properties: the HTML attribute (present in markup and when explicitly setting attributes using setAttribute, which is not recommended) should just be present or being set to either an empty string or itself (defer="defer", especially important when writing XHTML compliant documents); when setting the element's property on-the-fly using JavaScript, one should use s.async = true. – Marcel Korpel Dec 14 '10 at 16:06
5  
@vsync: It even shouldn't be true; either async, async="" or async="async". – Marcel Korpel Dec 14 '10 at 16:07
feedback

There's two parts to this question, really.

  1. Q: Which browsers support the "async" attribute on a script tag in markup?

    A: IE10p2+, Chrome 11+, Safari 5+, Firefox 3.6+

  2. Q: Which browsers support the new spec that defines behavior for the "async" property in JavaScript, on a dynamically created script element?

    A: IE10p2+, Chrome 12+, Safari 5.1+, Firefox 4+

As for Opera, they are very close to releasing a version which will support both types of async. I've been working with them closely on this, and it should come out soon (I hope!).

More info on ordered-async (aka, "async=false") can be found here: http://wiki.whatwg.org/wiki/Dynamic_Script_Execution_Order

Also, to test if a browser supports the new dynamic async property behavior: http://test.getify.com/test-async/

link|improve this answer
1  
Thanks, much more up to date than the above stuff. Asker, please mark this as the accepted result. – Jon Raasch Aug 25 '11 at 15:24
feedback

From your referenced page:

Firefox 3.6 is the first browser to officially offer support for this new feature. If you're curious, here are more details on the official HTML5 async specification.

link|improve this answer
.........Where? :) – Shoban Dec 2 '09 at 16:31
4th paragraph, last sentence. – tvanfosson Dec 2 '09 at 16:32
@tvanfosson - hope you don't mind, edited in the link from that page for you. – Dominic Rodger Dec 2 '09 at 16:34
@Dominic -- thanks for the update. I was working on it, but you beat me to it. – tvanfosson Dec 2 '09 at 16:34
Sorry I thought you wanted to add a link to "here are more details" :) – Shoban Dec 2 '09 at 16:34
show 2 more comments
feedback

As of June 1, 2011:

Supported by:

  • Chrome (since v11)
  • Firefox (since v3.6)

Not supported by:

  • Opera
  • IE
  • Safari
link|improve this answer
feedback

You can also look at the Browserscope network tests for current browser support. There is an "Async Scripts" column.

link|improve this answer
feedback

There's a Wikipedia entry for HTML5 browser support. At this point in time, it appears that only the Gecko engine supports it. Gecko is the engine used in Firefox.

link|improve this answer
feedback

This is from Google

"The second half of the snippet provides the logic that loads the tracking code in parallel with other scripts on the page. It executes an anonymous function that dynamically creates a element and sets the source with the proper protocol. As a result, most browsers will load the tracking code in parallel with other scripts on the page, thus reducing the web page load time. Note here the forward-looking use of the new HTML5 "async" attribute in this part of the snippet. While it creates the same effect as adding a element to the DOM, it officially tells browsers that this script can be loaded asynchronously. Firefox 3.6 is the first browser to officially offer support for this new feature. If you're curious, here are more details on the official HTML5 async specification. "

link|improve this answer
can we have a link for that? – David Kemp Jul 28 '10 at 10:58
oh, found it: googlecode.blogspot.com/2009/12/… – David Kemp Jul 28 '10 at 10:59
feedback

Here is a live test of this attribute http://html5demo.braincracking.org/demo/async.php.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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