• sites,  WordPress

    More jQuery Goodness

    jQuery is also a great solution for interconnecting various graphical elements and making them do things, like go get you coffee. One such aspect of what you can do is tilt graphics, assign perspective to them and have fluid controller motions. For example, the following script will perform somewhat of a vertical version of coverflow using just JavaScript accessible using jQuery. https://krypted.com//labs/coverflow/demo/vertical.html More examples can be found at: http://dev.jqueryui.com/browser/branches/labs

  • Consulting,  sites,  WordPress

    Leveraging jQuery for Input Validation

    jQuery is the most popular JavaScript library in use at this point, finding its way into something around 20% of the largest websites in the world. One of the main reasons for this is that much of jQuery is meant to allow for working between JavaScript and Ajax. As such it often ends up getting used for graphical interfacing. One interesting use for graphics is to only allow someone to actually enter specific characters into fields. It is common to leverage input validation, but typically this includes validating the data that is submitted from a form; however, using jQuery, there is an AlphaNumeric script that only allows the use of…