JavaScript: Get anchor from URL
Posted on 10. Jun, 2009 by Dragos in Apps, Coding, JavaScript & Ajax, PHP
To get the anchor from an URL (this is the text after the # character) in JavaScript you can use the following code:
var url='http://iwebdevel.com/some-post#comment-1'; //if you need to take the current url of the window use: var url=window.location; var anchor=url.hash; //anchor with the # character var anchor2=url.hash.substring(1); //anchor without the # character
If you’re iterating through the links in a page with JQuery, and $(this) defines a single link, then to find the anchor of this object you’d need to use the following code:
var anchor=$(this).attr("hash");
Translate this post
Related posts:
- JavaScript: GIFless animation. Animate images,logos with jQuery
- JavaScript: What if jQuery animation doesn’t fire/start?
- Javascript: How to validate email address with JavaScript?
- JavaScript: How to get the index (position within a group) of an object with jQuery?
- WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script
-
Kago Kagichiri










































