download multiup.js
Language: JavaScript
LOC: 11
Project Info
torrentflux-b4rt(tf-b4rt)
Server: BerliOS (SVN)
Type: svn
...N)\t\tf‑b4rt\trunk\html\js\
   adminSettings.js
   ajax.js
   ajax_index.js
   ajax_servermon.js
   ajax_transferStats.js
   common.js
   dir.js
   dtree.js
   fluxdSettings.js
   functions.js
   index.html
   login.js
   maketorrent.js
   moveSettings.js
   multiup.js
   overlib.js
   profile.js
   resdirSettings.js
   sorttable.js
   tooltip.js
   transfer.js
   userSettings.js

/* $Id: multiup.js 3045 2007-05-24 05:36:35Z warion $ */

// fields
var formContent = '<br /><input type="file" name="upload_files[]" size="40" /><span id="fileUploadSpan"></span>';

/**
 * addUploadField
 */
function addUploadField() {
	element = document.getElementById("fileUploadSpan");
	if (typeof(element.outerHTML) != 'undefined') {
		element.outerHTML = formContent;
	} else {
		var range = document.createRange();
		range.setStartBefore(element);
		element.parentNode.replaceChild(range.createContextualFragment(formContent), element);
	}
}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us