Displaying 1 result from an estimated 1 matches for "selectorrest".
Did you mean:
  selectores
  
2005 Nov 24
1
Extended $ function called $$
...har.inArray($$.hashes)){
				var id=part.substring(1,part.length);
				var element = $(id);
				if(element){
					// return a single element
					if(partArray.length <= 1){
						elements.append(element);
					// return the children of the single element with more selectors
					}else{
						var selectorRest = selector.substring(selector.indexOf(''
'')+1,selector.length);
						elements.append($$.getSubelementsBySelector(element,selectorRest));
					}
				}else{
					throw new Error("Element with id "+id+" not found");
				}
			// find multiple elements
			}else{...