Code Snippet
Current Page with JavaScript
This is like a replacement for PHP's SCRIPT_NAME with JavaScript.
location.href.split('/').pop();For example with this URL:
http://css-tricks.com/examples/ScriptName/index.php
This code:
document.write( location.href.split('/').pop() );Would write to the page: "index.php"
There’s a significant problem with this snippet:
If you change the example page to:
http://css-tricks.com/examples/ScriptName/
You will see that NOTHING is returned. So if you’re writing code that relies on ‘index.php’ being returned, your code will not execute.
That’s right. It would only be really useful if you were running a web app that enforced URLs in a strict way so there wasn’t any possibility of multiple URL’s going to the same place.
Any workaround?
Chris is there away to have more than 2 scripts on a page .I had a Accordion rotation, and a drop-down
Apple style Navigation bar both worked
but i didn’t have any page scroll bar so i couldn’t look at the content. I have been learning this for about a week
so i am not great at JavaScript. So how would i go about it? I make most of my sites in Dreamweaver
so after my mock up i save as a template.
Is it still possible to put more scripts on still.
is there a hack ? Not sure what to do .Thanks
It will aslo include request arguments and the hash like
inde.php?s=products#data-tab
art
where is the tutorial???