Akbar on Development
Attaining the Impossibles
  • All Projects
  • Jack Sparrow Compass
  • Subtitles Translator
  • USB Disk Manager
  • Swift MVC Framework
  • TaskbarExt
  • Quick Chess
  • Basecamp Extension
  • Language Tools
  • Rapid Downloader

Search Results for:

JavaScript anonymous functions are really a bliss, and they way the help you write neat, flexible and dynamic code is simply amazing. I always admire them whenever I use them. But they don’t work in loops as neatly as in some other languages where the variables are scoped to the block level (like C#). In […]

On the web programming, it’s common to use the “#” as the HREF value and apply the event handler on the “click” event. But if you don’t return false in the “on click” event handler, the “#” will be appended to the URL when user click on that link and it may ugly and even […]

I found another very interesting reference site on the DOM and JavaScript and it’s Dottoro: http://help.dottoro.com/ljxsqnoi.php For example, just check how much detail is available on just the Range object. The best thing is all the compatibility options of all the major browsers are also discussed. The main idea for this post is to bookmark […]

I have known for a long time that Mozilla/FireFox has a custom CSS attribute to apply the round corners on the HTML element using the “-moz-border-radius” property. But as apparent from the name prefix, it works only on Mozill/FireFox browsers. I found today that Chorme also support the round corners, but unfortunately under a different […]

Everyone now and then a web developer stumble upon a JavaScript which is compressed by some utilities mainly to cut down the load time. I found it really tough, if not impossible, to read and understand such JavaScript. Fortunately, when tired of looking at one such compressed code (of a Google Chrome extension), I as […]