Why does $(selector).onclick = function() work in the developer console but not in Adobe Launch?
$(document).on("click","button",function() {
......
});
this worked in Adobe launch for button tagging.
$("button").onclick = function() {
......
};
This function works in the developer console and not in Adobe Launch. Does anyone have any idea why this does not work in Adobe launch?