skip to Main Content

Why is there a loop in the confirm window in jQuery?

Why does the confirm window always reappear immediately after i have selected either ok or cancel? And how can I fix this? var originalValue = ""; $("#betreffDropdown").change(function () { originalValue = $("#betreffDropdown option:selected").attr("class"); }); $('#nachrichtentext').on('blur', function (e) { var currentValue…

VIEW QUESTION
Back To Top
Search