diff --git a/dom.js b/dom.js new file mode 100644 index 0000000..5657b8e --- /dev/null +++ b/dom.js @@ -0,0 +1,32 @@ +/** + * The Phi Technology LLC, + * Javascript-x framework version 0.1 + * + * Handling of DOM objects will rely on DOM object identifiers (ID) with a few exceptions + * This file handles DOM objects with a namespace implementation. + * The basic design is a wrapper around WC3 standard interface for a dom + */ + +if(!jx){ + var jx = {} +} +jx.dom = {} ; +jx.dom.get = {} ; +/** + * This function will return the value of a dom object regardless of the object + * @param {type} id + * @returns {undefined} + */ +jx.dom.get.value = function(id){} +jx.dom.get.children = function(id){} + +jx.dom.set = {} ; +/** + * This function will set a value to a dom object + * @param {type} id + * @param {type} value + * @returns {undefined} + */ +jx.dom.set.value= function(id,value){ + +} \ No newline at end of file