- formatting
- images
- links
- math
- code
- blockquotes
- external-services
•
•
•
•
•
•
-
jQuery Plugin Development Guidelines
This article provides a simple guide for writing jQuery plugins, covering best practices such as naming conventions, handling the $ alias, complex parameter lists, and wrapper methods.
-
XSLT Tutorial - Transforming XML to HTML
An introduction to XSLT for XML document transformation, covering core concepts, functional programming influences, and a practical example of transforming weather XML into HTML.
-
Recursion in XSLT
A guide to using recursion in XSLT for XML document processing, covering templates, XPath, and an example of transforming F1 season data.
-
Implementing AJAX with jQuery's load() Method
A comprehensive guide to AJAX, comparing plain JavaScript with jQuery, and demonstrating how to use jQuery's powerful load() method for dynamic content updates. Includes cross-browser XMLHttpRequest handling, jQuery load() examples, and best practices for GET vs. POST requests.
-
Java Collections - Converting to Arrays
This post explains how to convert Java Collections to typed arrays using the Collection.toArray(T[] a) method, avoiding explicit casting.