Monthly Archives: November 2009

Toggle the visibility with jQuery

When it comes to quick JavaScriopt effects one of the most common is to hide and show different elements in the DOM. That occurs in almost every site. If there’s a dynamic menu, there’s for sure attached mouse event that … Continue reading

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

Redirecting with Zend Framework

Many of the web applications need to be redirected to some given URI sooner or later. In that scenario like redirecting to the profile page after login, which is very common to almost every app, you need to change the … Continue reading

Posted in PHP, web development, zend framework | Tagged , , , , | 1 Comment

Writing a jQuery plugin – (part 1). Good practices!

JavaScript flexibility In JS you have the natural flexibility to extend an object you have previously declared. Even more you can extend any native objects! That makes the writing of a jQuery, or whatever javascript library, plugins to be very … Continue reading

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

jQuery CSS functions. Part 2 – width() and height()

$.width() and $.height() Related to the previous several posts jQuery comes with two functions that help you dynamically get the width and height of an element. Have you ever asked about the width of an element in pixels which is … Continue reading

Posted in css, javascript, micro tutorial | Tagged , , , , | Leave a comment

jQuery CSS functions. Part 1 – offset()

What are jQuery CSS functions? Well these are function which help you modify different CSS properties with JavaScript. You know you can do that in “pure” evangelistic JS, but normally every library comes with its own bunch of functions that … Continue reading

Posted in css, javascript, micro tutorial | Tagged , , , | 3 Comments