Thursday, March 8, 2012

HTML file chooser

To implement file chooser in HTML, using <input>, with type="file".

HTML file chooser

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mobile-Web-App: HTML file</title>
</head>
<body>

<input type="file" name="filechooser" size="10"></input>

</body>
</html>


Next:
- HTML file chooser with accept type
- HTML/Javascript: input to load multiple file

No comments:

Post a Comment