Monthly Archives: May 2009

JavaScript typeof operator

typeof vs == It sounds strange but most of the web developers still use == operator to check the ‘undefined’ value of a JavaScript variable. Don’t know why but however there’s typeof operator and I strongly recommend it for that … Continue reading

Posted in javascript, micro tutorial, web development | Tagged | 1 Comment

Flex 3 DateChooser UTC issue

What I intend to do The task can be described as it is. There’s a Flex 3 DateChooser component integrated with a custom timeline component. The problem occurs when exporting the data from the flash to the browser. Than I … Continue reading

Posted in flex 3, web development | Tagged , , , , , | 5 Comments

reload the page with javascript

Sometimes there’s a need to reload the page with JavaScript. There’s a built in method for that! Just use: window.location.reload()

Posted in javascript, micro tutorial, web development | Tagged , , | Leave a comment

The SWFObject method createSWF problem

The Problem Although the SWFObject method – createSWF is working fine under IE sets the wmode not to be transparent but with the strange value of window, i.e. <PARAM name=”WMode” value=”Window” /> The Solution is … to replace the createSWF … Continue reading

Posted in javascript, web development | Tagged , , , , , , | Leave a comment

Zend_Date with dates before 1901

Zend_Date Zend_Date is the Zend Framework module for manipulation of dates. It gives several advantages. Everybody how has dealed with dates knows that built in PHP date function cannot manage dates before 1901. With that kind of problems Zend_Date is … Continue reading

Posted in micro tutorial, PHP, zend framework | Tagged , , , , | Leave a comment