Posted in jquery
215
6:20 am, August 31, 2018

document ready wordpress jquery

Wordpress uses JQuery rather than $ to initialize so here is a workaround that allows you to still use the $ to access JQuery functions.

Just incase your normal document ready is not working.

document ready wordpress jquery Demo

View Demo Full Screen View Demo New Tab

document ready wordpress jquery Code

Javascript

jQuery(document).ready(function($){
	// do some stuff
}); 

jQuery(function($){
    // now you can use jQuery code here with $ shortcut formatting
    // this executes immediately - before the page is finished loading
});

jQuery(document).ready(function($){
    // now you can use jQuery code here with $ shortcut formatting
    // this will execute after the document is fully loaded
    // anything that interacts with your html should go here
});

Related Tags

No Items Found.

Add Comment
Type in a Nick Name here