Welcome to dingobytes!

Long ago in a web far far away, Dingobytes.com was created to offer service to a special Niche of businesses. After a few years of blood, sweat and tears, the venture disappeared and the domain was lost. After squatters found this domain useless, it was purchased for sentimental reasons and is now the home to tips and tricks for developers, admins and designers.

  • Links

  • Categories

  • Meta

  • Archives

  • SHOW / HIDE NAVIGATION

    Inspired by a similar feature at Twitter.com, this jQuery Plugin will help you display messages at the top of your page with an assortment of options.

    Download the latest version 1.3 of the plugin at http://showMessage.dingobytes.com/download/

    This is my first attempt at a jQuery Plugin, so although it works fine for my liking, I am sure there are many things that can be done more effectively.

    • Message displayed at the top of page (no scrolling to view error)
    • Multiple messages can be displayed
    • Options to automatically close the message after set delay
    • Message closes with blur/’esc’ key/’close’ link

    There are many times we might want to retrieve some data from the server or database without taking the user away from the current page. One such example of this is when a user is registering for a website and they need to verify if a username is available for use or not. Using an AJAX XMLHttpRequest is a quick and efficient way to check the availability of the username. The javascript XMLHttpRequest retrieves information from the server without using a page refresh.

    Read More