Hi, I don’t understand what is the solution this link that you shared. I am loading jquery version 3.1.1 because it is need for my other scripts. If also load query 1.8.3 that came with quform it gives me more errors related to other script.
I posted the link so you could understand what is happening. The Quform script uses some jquery event aliases that are deprecated since 1.8. So, if you load jQuery 3.1.1, the error is coming in. Solution is here :
This error might be caused by jquery event aliases like .load, .unload or .error deprecated since jQuery 1.8. Look for these aliases in your code and replace them with .on() to register listeners instead. Example:
$(window).load(function(){...});
becomes:
$(window).on('load', function(){ ...});
Don’t hesitate to ask more help if you can’t resolve this with the solution, Regards,