Category Archives: Programming
AFComponents old files
I found you can download the last version (although the documentation says 2.6) at http://www.afcomponents.com/components/g_map/GMap.zip
Using jQuery with Other Libraries / no conflict
GENERAL The jQuery library, and virtually all of its plugins are constrained within the jQuery namespace. As a general rule, “global” objects are stored inside the jQuery namespace as well, so you shouldn’t get a clash between jQuery and any other library (like Prototype, MooTools, or YUI). That said, there is one caveat: By default, jQuery …
Continue reading “Using jQuery with Other Libraries / no conflict”
PHP – Countdown Script
< ? $day = 16; // Day $month = 7; // Month $year = 2001; // Year if ($month == 1) $month_name= "January"; if ($month == 2) $month_name= "February"; if ($month == 3) $month_name= "March"; if ($month == 4) $month_name= "April"; if ($month == 5) $month_name= "May"; if ($month == 6) $month_name= "June"; if ($month …
Using Div/CSS popup instead of javascript alert box
http://www.jquery-dev.com/2008/12/02/jqmodal-jquery-modal-popup-plugin http://www.84bytes.com/2008/06/02/jquery-modal-dialog-boxes/ http://vision-media.ca/resources/jquery/jquery-popup-plugin-review http://www.queness.com/post/77/simple-jquery-modal-window-tutorial http://plugins.jquery.com/project/modaldialog
Javascript Function to Check or Uncheck all Checkboxes
Javascript Function to Check or Uncheck all Checkboxes This Javascript function will check or uncheck all the checkboxes in an HTML form. This function is specially designed for dynamic pages with varying numbers of checkboxes. Unlike other functions out there, it will work without error even if there are no checkboxes or there is only …
Continue reading “Javascript Function to Check or Uncheck all Checkboxes”