Hello,
I'm trying to use jquery $.post or ajax, but whenever I try to do it i get error:
Javascript error in event handler! Event Type = element
in Adobe Edge CC 5.0.0.
In older version there wasn't such an error
for example code
$.ajax({
dataType: 'text',
type: frm.attr('method'),
url: frm.attr('action'),
data: "asd",
success:function(result){
alert("Yes!!!!");
},
error: function(result){
alert("%$#$%");
}
});
Did you encouter similar problem, is it bug?