jquery Archive

  • Geocoding with Google Maps and the Zend Framework

    Geocoding with Google Maps and the Zend Framework

    Maps are a great way to engage your users and visualize data, but it can be a little tricky to setup. Here I will walk you through the steps needed to get a map up and running. // Sign Up Apply for a Google Maps...

    Full Story

  • jQuery Tabs Keyboard Shortcuts

    jQuery Tabs Keyboard Shortcuts

    I have integrated jQuery’s UI tabs into a number of my projects and have had to significantly modify the code to achieve some goals (like being able to easily add and remove tabs. One of the simpler thing I have done with the tabbed interface...

    Full Story

  • jQuery U.S. States Autocomplete

    jQuery U.S. States Autocomplete

    Yes, I looked too; but it’s not out there. Here is a quick plugin I wrote utilizing the popular jQuery Autocomplete function found here Add it to your form element by using: <input type="text" id="state_search" /> <input type="hidden" name="state" /> ... <script type="text/javascript"> $('#state_search').states(); </script>...

    Full Story

  • jQuery Form Validation: theory and practice

    jQuery Form Validation: theory and practice

    jQuery makes it very easy to validate forms. There are a number of useful plugins, the most prominent being validate. If you are wanting something very lightweight or are just interested in how something like this works, read on. The $.each function allows you to...

    Full Story