I'm building a WordPress theme (learning really) and have the functions file setup properly (from another tutorial) and jquery is loading and working.
However In the bootstrap template I'm converting there is some function calls that are not ever firing. The functions look like this inside my custom.js file:
jQuery(document).ready(function() {
App.init();
OwlCarousel.initOwlCarousel();
ParallaxSlider.initParallaxSlider();
});
alert ("test");
As a test I put the alert call and found that it fires just fine outside the document.ready function. If I pull the calls outside the document.ready they still don't fire. But I'm near certain the js files they require are loaded fine.
I'm probably missing something very simple. Thanks for any help