[JavaScript]General:- v8-juice - SpiderApe - Source packers - jQuery Stuff for jQuery: - Color Picker - Confirmer - Dice Roller - Folder View - HTML factory - jqApp framework - Menu generator - Spoilers - Tabbed Panels - TogglePane | jQuery HTML Factory ExtensionjQuery.html is an object which contains factory functions for creating new HTML/DOM elements. It is intended to replace inlined HTML code in script code. e.g.: Old:
var x = jQuery("<div></div>");
becomes:
var x = jQuery.html.div();It also provides a number of small conveniences, like simplified generation of tables:
var t = jQuery.html.table();
var tr = t.tr();
tr.td().append("Cell 1");
tr.td().append("Cell 2");
That will create a table with one row and two cells.
If you would like to see a standalone demo, click here.
What the various *.js files are:
|