Feb 27, 2015

[Fixed Solution] : JQuery Click event not working after adding class using JQuery

Since the class is added dynamically, you need to use event delegation to register the event handler
$(document).on('click', ".className", function() {
    alert("functionCalled");        
});

JWT Token Decode Using Jquery

When it come to authentication we use many mechanism. Ones the user authenticated we must keep these details somewhere safe. So we can share...