5
In some browsers, such as Google Chrome
, always when "move" in some element of the page, the following message appears:
Event.returnValue is deprecated. Please use the standard Event.preventDefault() Instead
Or else:
Use of getPreventDefault() is deprecated. Use defaultPrevented Instead
In my Firefox 39, appears:
The getPreventDefault() method should no longer be used. Instead, use defaultPrevented..
I am concerned about development whenever I see or hear the word Deprecated or Depreciated.
After all, what causes this message?
This refers to the event.preventDefault()
which we generally use with the eventListener
and/or with jQuery
?