Add jQuery Datepicker to a dynamic inserted input field via AJAX

Problem: You need to dynamically insert input fields in the DOM and attach to them the Datepicker component from jQuery UI.
Continue Reading →

28. March 2012 by Sorin
Categories: JavaScript, jQuery | 1 comment

Custom Easy to use jQuery Modal Box

A clean modal box that uses jQuery.

HTML

<div id="modal_wrapper">
content for modal here
</div>

Continue Reading →

28. March 2012 by Sorin
Categories: CSS, jQuery | 1 comment

DBAL and UTF-8 encoding problem

If you are using Doctrine DBAL to connect to your database you will notice that even if you are using UTF-8 encoding in your database tables the special characters are still not rendered correctly.
Continue Reading →

12. August 2011 by Sorin
Categories: MySQL, PHP | Leave a comment

TurtoiseHG windows 64bit shell extension doesn’t show in Total Commander

In the 64bit version of Windows you have to be sure when you install TourtoiseHG that you ALSO install the 32bit version.
TotalCommander is 32bit so it won’t load the 64bit shell version.

30. December 2010 by Sorin
Categories: Bulk | Leave a comment

Quickly build a jQuery dropdown menu

Let’s dive directly in:

jQuery

$(document).ready(function(){

    $('#navigation li').hover( function()
    {
        $(this).children('ul').not(':animated').slideDown('#navigation li ul');
    }, function()
    {
        $(this).children('ul').slideUp('#navigation li ul');
    });

});

Continue Reading →

06. July 2010 by Sorin
Categories: jQuery | 1 comment

← Older posts

Social Widgets powered by AB-WebLog.com.