Showing posts with label onclick multipal file uploading button. Show all posts
Showing posts with label onclick multipal file uploading button. Show all posts

Wednesday, 10 August 2011

onclick multiple file uploading button,dynamically add uploading buttons


<script>
var i=6;
function generateRow1() {
if(i>35)
{
alert("no more files are upload");
}
else{
var d=document.getElementById("div1");
d.innerHTML+="<p><input type='file' name='foods"+i+"' size='6'>";
i++;
return false;
}
return true;
}
</script>
<input type="file" checks="min=1" size="6" id="fld_photo" class="hide" name="fld_photo">
<div id="div"></div>