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 →
Custom Easy to use jQuery Modal Box
A clean modal box that uses jQuery.
HTML
<div id="modal_wrapper"> content for modal here </div>
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 →
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.
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');
});
});
