var jqueryUrl = 'https://code.jquery.com/jquery-1.11.0.min.js'; /** * Check that jQuery is loaded and if not, load it. * * It loads asynchronously, so add a listener to run the subsequent code once it has loaded * * @returns */ function yoursalonInitJQuery() { if (typeof jQuery == 'undefined') { var headTag = document.getElementsByTagName("head")[0]; var jqTag = document.createElement('script'); jqTag.type = 'text/javascript'; jqTag.src = jqueryUrl; jqTag.onload = yoursalonInit; headTag.appendChild(jqTag); } else { yoursalonInit(); } } yoursalonInitJQuery(); /** * Schedule the salon guru code to run once the page has finished loading * * @returns */ function yoursalonInit() { jQuery(document).ready(function($) { $('#yoursalon-late-deals').html('

Deals are Inactive - please contact the salon

'); }); }