UPDATES VIA   RSS  |  Email Get updates via feedburner Get updates via twitter
Home / Apps

Posts in 'Apps'

JavaScript: Get anchor from URL

Posted on 10. Jun, 2009 by .

2

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 [...]

Continue Reading

Apps: Best two IDEs to use with Linux Ubuntu

Posted on 07. Jun, 2009 by .

3

When I was working on a Windows based OS, I was using Adobe Dreamweaver to do all coding in CSS, JavaScript,PHP and more. Switching to Ubuntu Jaunty Jackalope I found out that Dreamweaver was not working anymore with this OS. So I discovered two wonderful IDEs that help me a lot! Quick and efficient! Geany! [...]

Continue Reading