ARTICLE NO. 282 March 26, 2008
Accessible jQuery extensions
Is accessibility on your mind? Then the accessible jQuery charting and slider extensions could really rock your world.
ABOUT THE AUTHOR(S)
RELATED ARTICLES
GET UX MAGAZINE
Most viewed Articles
May 19, 2010 - Susan Weinschenk, Ph.D.
June 07, 2011 - Loren Baxter
July 26, 2011 - Scott McDonald
April 14, 2011 - Sarah Doody
July 06, 2010 - Francisco Inchauste
February 02, 2010 -
January 25, 2010 - Lukas Mathis
December 23, 2010 - Pek Pongpaet
June 10, 2010 - Nate Bolt, Brynn Evans, Cyd Harrell
September 09, 2010 - Devin Coldewey






Comments
Add a new comment
console.log(‘Failed to load Google Analytics:’ + err);
The line is sure to cause headaches when there is some sort of error loading the GA code AND the user is not using some sort of JS console (be it Firebug on Firefox or IE JS Companion)
Might want to remove it, or prefix it with
if (typeof console != ‘undefined’)
console.log(‘Failed to load Google Analytics:’ + err);
The line is sure to cause headaches when there is some sort of error loading the GA code AND the user is not using some sort of JS console (be it Firebug on Firefox or IE JS Companion)
Might want to remove it, or prefix it with
if (typeof console != ‘undefined’)