Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Difference between addEventListener and onclick

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 827
    Comment on it

    Both onclick and addEventListener javascript function will work but sometimes it creates problem for developers to understand what the exact difference of these two's are.

    1. var h = document.getElementById('a');
    2. h.onclick = function1;
    3. h.onclick = function2;
    4.  
    5. h.addEventListener('click', function3);
    6. h.addEventListener('click', function4);

    In above code, functions 2, 3 and 4 work, but 1 does not. The reason behind that is that the javascript function "addEventListener" does not overwrite existing event handlers, but javascript function "onclick" overrides any existing onclick = fn event handlers.

    Also addEventListener does not work in Internet Explorer before version 9. whereas onclick function will work in every browser.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: