Categories
- agile (3)
- algorithms (34)
- cheatsheets (2)
- css (29)
- download (3)
- featured (46)
- flex 3 (25)
- javascript (139)
- micro tutorial (203)
- PHP (111)
- portfolio (5)
- quiz (7)
- snippets (7)
- video (1)
- web development (168)
- zend framework (81)
Category Archives: micro tutorial
javascript: get function caller
Who calls me? If that’s the question a JavaScript function is asking for, and respectively you are, there is one simple way to find the answer. Why would I need this? Well let assume I’ve one function called func1, called … Continue reading
Posted in javascript, micro tutorial
Tagged caller, console.log, firefox, javascript
Leave a comment
jQuery datepicker persist defaultDate
Datepicker from jQuery You know how the jQuery UI extensions give a useful functionality for the javascript developers. The datepicker is a useful calendar tool that comes with variaty of functions. How to setup the selected / defaultDate It’s as … Continue reading
Posted in javascript, micro tutorial
Tagged constructor, datapicker, destructor, javascript, jquery
Leave a comment
jQuery check for element visibility
What if the element exists in the DOM That was described in my recent post and it describes the case when you have a particular element in the DOM tree, or if that element does not exists. example: <div id="holder"> … Continue reading
JavaScript closures in brief
What’s a closure Well every javascript programer knows that a variable defined in javascript file with the var declaration is global into all javascript code. var a = 12; console.log(a); that code prints 12 into the console. Note: console object … Continue reading





