@kamlesh_vaghela still not working 😞 One point, I can not change anything in A1.js as it is common for all apps and managed by some other team. In that JS on click function does not have $(document), in stead it is as follows $(".spanclass").click(function () {
// Set time filter to all time
} It is working when I am changing the on click function of A1.js with $(document) , the one you are suggesting. But, I can not modify anything in that file. Tried the following in A2.js to match that one, but that also didn't work $(".spanclass").off('click', ".a-btn").on('click', ".a-btn", function() {
// set time token to 24 hr
} Can you suggest something on this
... View more