AabahnjMay 27, 2017
How can i use jquery v3 with canvas as changing to it seems to break a few things
1 reply · opened May 27, 2017
How can i use jquery v3 with canvas as changing to it seems to break a few things
Hello,
Unfortunately, Canvas currently does not support jQuery 3.x since there are some plugins included within Canvas that still does not support the Latest Version of jQuery. However, the error you are getting an definitely be solved, so simply find the following code in the js/functions.js File:
$(document).ready( SEMICOLON.documentOnReady.init );
$window.load( SEMICOLON.documentOnLoad.init );and replace it with:
$(document).on( 'ready', SEMICOLON.documentOnReady.init );
$window.on( 'load', SEMICOLON.documentOnLoad.init );This should fix the issue. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.
Have the same question, or something new?
Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.
Reply on the dashboard