UPDATES VIA   RSS  |  Email Get updates via feedburner Get updates via twitter
Home / Apps / Coding / JavaScript & Ajax / PHP / JavaScript: Get anchor from …

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:

  1. JavaScript: GIFless animation. Animate images,logos with jQuery
  2. JavaScript: What if jQuery animation doesn’t fire/start?
  3. Javascript: How to validate email address with JavaScript?
  4. JavaScript: How to get the index (position within a group) of an object with jQuery?
  5. WordPress: Best SEO iTranslator for WordPress, get free traffic from fully automated plugin script

  • Kago Kagichiri
    Thank you! You were a click away, straight to the point and you have a jQuery alternative. Awesome.
blog comments powered by Disqus