I have this script:
<script>
$(document).ready(function () {
$("#changeResumeStatus").click(function () {
$.get("{% url 'main:changeResumeStatus' %}", function (data) {
if (data['message'] == 'hidden') {
$("#resumeStatus").text("??????");
} else {
$("#resumeStatus").text("????????????");
}
}, "json");
});
});
</script>
I receive the following error in my Google Chrome console:
event.returnValue is deprecated. Please use the standard event.preventDefault() instead.
I am using jQuery v1.10.2 and #changeResumeStatus
is a <span>
.
What's wrong with my script?
This question is related to
javascript
jquery
ajax
This is only a warning: your code still works, but probably won't work in the future as the method is deprecated. See the relevant source of Chromium and corresponding patch.
This has already been recognised and fixed in jQuery 1.11 (see here and here).