unlinkDropArea

unlinks an extra drop area from Vault

void unlinkDropArea(HTMLElement|string el);
elHTMLElement|stringthe drop area or its ID

Example

<div id="drophere">DROP HERE</div>
 
// attaches an extra drop area  
vault.uploader.linkDropArea("drophere");
 
// detaches the extra drop area  
vault.uploader.unlinkDropArea("drophere");

See also
Back to top