In my application has a javascript siples to increment a field, the problem that in the safari gets ultra slow almost does not work, while in the chrome works perfectly. Is there something to do to run normal on safari?
js:
$("#aumentaDesconto").click(function () {
var input = $("#txtDesconto")[0];
var desconto = parseInt(input.value, 10) + 1;
input.value = desconto;
});