Skip to content

Instantly share code, notes, and snippets.

@rdbox
Created April 17, 2016 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdbox/5c85ef0f852ebcc7fd53739d35a61561 to your computer and use it in GitHub Desktop.
Save rdbox/5c85ef0f852ebcc7fd53739d35a61561 to your computer and use it in GitHub Desktop.
/*
Функция из URL извлекает pathname
после указываем условия при котором идет и поиск совпадения
lastIndexOf() ищет значние в индексе, выводить на экран все после "/""
*/
function () {
var pagePath = location.pathname;
if (pagePath.indexOf("/search/") === 0) {
var searchString = pagePath.substring(pagePath.lastIndexOf("/") + 1);
return searchString;
}
else {
return "none";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment