I currently have the following javascript code working:
<script type="text/javascript">
urlPath=window.location.pathname;
urlPathArray = urlPath.split('/');
urlPath1=urlPathArray[2];
document.write('<a href="http://www.example.com/contact.php?id='+urlPath1+'">test</a>');
</script>
Lets say the current URL is http://www.example.com/products/0033.htm
The javascript produces a hyperlink to http://www.example.com/contact.php?id=0033.htm
How do I modify this script so that urlPath1 and the eventual hyperlink is without the ".htm" part?
.htm? Because you could just use a substring – Cole Johnson Jun 6 '12 at 0:02urlPathArray[2];UseurlPathArray[urlPathArray.length - 1]to get the last element... – Cole Johnson Jun 6 '12 at 0:03