Generate calendar using PHP and browse it using AJAX
2010-08-20
Here is a way to generate calendar using PHP and allow user to browse it using AJAX. You will need http://webcodingeasy.com/jquery.js to parse json structure. You can modify this code, to limit month and year user can browse, and also attach link to specific dates, based on your database records. So here is PHP code which generates json...Simulating table sorting using li elements
2010-07-28
It is hard to find good script to sort table cells using drag and drop combined with ajax. So here is an example where you can simulate table cell sorting using floating li elements with specified width and limiting them with container div element. You'll need http://webcodingeasy.com/js/mootools.js to make it work. <?php $con =...Update select element using AJAX
2010-06-24
To do this you will need http://webcodingeasy.com/jquery.js library. So for example in one select element we have two parents, each of them has their own children. We want to display children of selected parent in second select element. So here is a code for select elements: <select name='parent' id='parent'...Drag and drop sortable list using Mootools
2010-06-19
To create a sortable list you will need http://webcodingeasy.com/js/mootools.js javascript library in your <head> tags. Then you can use this simple list (attribute alt is the identifier) <ul id='list'> <li alt='1'>item1</li> <li alt='2'>item2</li> <li alt='3'>item3</li> <li...









