Where to place Javascript?!
-
I am currently using Divi for my site, and switching to GeneratePress/Elementor. I have JS in the <head> section which when using Divi is extremely easy to add. Where do I put it now that I am not using Divi? I cannot find a place to add it with GeneratePress??
<link href=”https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap” rel=”stylesheet”>
<link rel=”stylesheet” href=”https://use.typekit.net/fkv1moe.css”>
<script type=”text/javascript”>
(function($) {
function setup_collapsible_submenus() {
// mobile menu
$(‘#mobile_menu .menu-item-has-children > a’).after(‘<span class=”menu-closed”></span>’);
$(‘#mobile_menu .menu-item-has-children > a’).each(function() {
$(this).next().next(‘.sub-menu’).toggleClass(‘hide’,1000);
});
$(‘#mobile_menu .menu-item-has-children > a + span’).on(‘click’, function(event) {
event.preventDefault();
$(this).toggleClass(‘menu-open’);
$(this).next(‘.sub-menu’).toggleClass(‘hide’,1000);
});
}$(window).load(function() {
setTimeout(function() {
setup_collapsible_submenus();
}, 700);
});})(jQuery);
</script><script>
jQuery(document).ready(function(){jQuery( “#menu-item-639” ).insertAfter( jQuery( “.menu-item-635″ ) );});
</script><script src=”https://api.soarr.com/inventory/1.0/scripts/inv-app.beta-0.1.min.js”></script>
<script src=”https://inv.soarr.com/emtharp/main.js”></script>The page I need help with: [log in to see the link]
- The topic ‘Where to place Javascript?!’ is closed to new replies.