(function(){ /** * load external JavaScript * @see http://www.nczonline.net/blog/2009/07/28/the-best-way-to-load-external-javascript/ */ function loadScript(url, callback){ var script = document.createElement("script") script.type = "text/javascript"; if (script.readyState){ //IE script.onreadystatechange = function(){ if (script.readyState == "loaded" || script.readyState == "complete"){ script.onreadystatechange = null; callback(); } }; } else { //Others script.onload = function(){ callback(); }; } script.src = url; document.getElementsByTagName("head")[0].appendChild(script); } var jQueryLoadCallback = function() { var jq191 = $.noConflict(true); (function($){ $('#article_most_read').html('

Most Read

\ \ \ \ '); })(jq191); } loadScript('http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js', jQueryLoadCallback); })();