12345678910111213141516171819202122232425262728293031323334 |
- var yoxviewPath = getYoxviewPath();
- var cssLink = top.document.createElement("link");
- cssLink.setAttribute("rel", "Stylesheet");
- cssLink.setAttribute("type", "text/css");
- cssLink.setAttribute("href", yoxviewPath + "yoxview.css");
- top.document.getElementsByTagName("head")[0].appendChild(cssLink);
-
- function LoadScript(url)
- {
- document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '"><\/scr' + 'ipt>' ) ;
- }
-
- var jQueryIsLoaded = typeof jQuery != "undefined";
-
- if (!jQueryIsLoaded)
- LoadScript("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
-
- LoadScript(yoxviewPath + "jquery.yoxview-2.21.min.js");
-
- function getYoxviewPath()
- {
- var scripts = document.getElementsByTagName("script");
- var regex = /(.*\/)yoxview-init/i;
- for(var i=0; i<scripts.length; i++)
- {
- var currentScriptSrc = scripts[i].src;
- if (currentScriptSrc.match(regex))
- return currentScriptSrc.match(regex)[1];
- }
-
- return null;
- }
- // Remove the next line's comment to apply yoxview without knowing jQuery to all containers with class 'yoxview':
- LoadScript(yoxviewPath + "yoxview-nojquery.js");
|