Jquery is not working without settimeout in meteorjs
I have a code in helper in meteorjs Template.tickets.helpers({ priorityClassColour(priority) { setTimeout(() => { $(".Low").css('background-color', 'red'); return 'Low' }); } }) This works fine without any error but when I move the code of jquery css outside settimeout, the style…