Justin Cooney
Web Development Tips and Examples
Category: HTML
-
It’s always a good idea to keep a reference for the basics of handling various form elements. Here is my attempt to explain some of the general functions for dealing with drop-down lists in pure JavaScript. Note that I am talking about a simple single-selection drop-down list. The syntax for multiple-selection drop down lists is…
-
SQL Server 2000 is an old database platform now, but it is still fairly widely used. That’s why it’s good to know how to pass a list of parameters to a stored procedure on the SQL Server 2000 database platform. Likewise, the code is forwards compatible and will work with more modern versions of SQL…
-
JSON is one of the most popular ways of transmitting data between a client and server and is more lightweight than its rival XML. There are many ways to access data in a JSON schema, but overall the simplest is to use pure JavaScript. Why not use an abstraction library such as JQuery? For simple…