/ Published in: JavaScript
Expand |
Embed | Plain Text
var baseURL = ""; $(document).ready(function(){ if (baseURL != "") { return; } getDocumentBasePath(); }); function getDocumentBasePath() { documentBasePath = document.location.href; if (documentBasePath.indexOf('?') != -1) documentBasePath = documentBasePath.substring(0, documentBasePath.indexOf('?')); if (documentBasePath.indexOf('index.php') == -1){ baseURL = documentBasePath+"/index.php"; } else { if (documentBasePath.lastIndexOf('index.php/') == -1) { baseURL = documentBasePath; } else { documentBasePath = documentBasePath.substring(0, documentBasePath.lastIndexOf('/')); baseURL = documentBasePath; } } }
You need to login to post a comment.
