I'm getting "jQuery is not defined" on all my accordions.
Example:
<script>
jQuery(document).ready(function($){
wizard_accordion = $("#accordions-785.accordions .items").accordion({
event: "click",
collapsible:true,
heightStyle: "content",
animate: ("swing", 1000),
navigation: true,
active: 99999,
});
})</script>
<p id="accordions-lazy-785" class="accordions-lazy">
</p>
<script>
jQuery( window ).load(function() {
jQuery('#accordions-lazy-785').fadeOut();
jQuery('#accordions-785').fadeIn();
});</script>
The source code says it's calling to jQuery 1.12.1 (/*! jQuery UI - v1.12.1 - 2016-09-14) -- is that the right version?
