jQuery version 1.10.2 deprecated warning in Firefox

I am developing a web page and am using the 2012 theme on WordPress. I inserted a slider ("responsive-slider" plugins); however, I got an error on Firefox (up-to-date) in the console saying Use of getPreventDefault() is deprecated. Use defaultPrevented instead.

I found an answer from this post: jQuery 1.10.2 warning issue from Firefox, and it suggests that I have look at my jQuery file and look for this line:

Read More
"this.isDefaultPrevented = ( src.defaultPrevented || src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse;" 

and change it to:

this.isDefaultPrevented = src.defaultPrevented ? returnTrue : returnFalse; 

In my situation, I got a line like this:

this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)

and this:

this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1

Any suggestions on how I could change those lines into the correct ones?

Related posts

Leave a Reply

1 comment

  1. For future issues with this As Arun stated, it’s a warning and not an error. Warnings like this that are known bugs should be addressed in a future update, which this one should have been fixed in 1.11.1. So it’s best to let them sort it out for the next release.

    This should have been fixed with the update, if it was mark it as answered.