ionezation 0 Posted March 5, 2014 Report Share Posted March 5, 2014 There are few mistakes in the book that is corrected in Errata Source Code. addEvent() function.addEvent: function(obj, type, fn) { 'use strict'; if (obj && obj.addEventListener) { // W3C obj.addEventListener(type, fn, false); } else if (obj && obj.attachEvent) { // Older IE obj.attachEvent('on' + type, fn); } }, // In the Source Code addEvent : function(obj,type,fn){ 'use strict'; if(obj && obj.addEventListener){ obj.addEventListener(type,fn,false); }//inner IF else if (obj && obj.attachEvent){ obj.attachEvent('on' + type, fn); }// Else IF },// Object Property function written in the book Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.