skip to Main Content

jQuery click action before other component load – WordPress

Optimized my website with WP Rocket and delayed javascript execution with some exclusions. Excluded: /jquery-?0-9.(.min|.slim|.slim.min)?.js and js-(before|after) and my script which has code: jQuery(document).ready(function() { console.log('F Loaded'); jQuery('#div_id').bind('click', function() { jQuery('#desired_element').css('display','block'); console.log('Clicked') }); }); When I'm loading a website -…

VIEW QUESTION
Back To Top
Search