javascript - TypeError: v.easing[this.easing] is not a function -


hi make easing effect notification bar in wordpress site whenever click button error typeerror. typeerror: v.easing[this.easing] not function here script using

<script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> 

in called script this

 <script src="<?php echo site_url(); ?>/wp-includes/js/jquery/jquery.js"></script>  <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script> 

here screenshot face exactly. enter image description here

any suggestion great. provide live link

you have 2 copy of jquery file in webpage, remove 1 inclusion, start working. checked in system.

removing line number 200 -

script type='text/javascript' src='http://techstumbling.com/wp-includes/js/jquery/jquery.js?ver=1.8.3'></script> 

would work.

explained -

you have included jquery file in following order -

  • jquery - created $ , added few properties $
  • jquery ui - added more properties $
  • jquery - created $ , overridden jquery ui specific properties in $

Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -