Last active
September 23, 2016 21:08
-
-
Save IgorGavrilenko/98f967f823bf1d59ac9ed4dd990eca09 to your computer and use it in GitHub Desktop.
search substring url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var location = document.location.pathname; | |
| var filterOption = '_text_'; | |
| if (location.indexOf(filterOption) > -1) { | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment