Use a form variable into another html page?
Hi,
I have a form that launch a file chooser to allow the user to select a picture. On clicking submit i want to open another page and use the file the user chose and display it. Is there a way to do it without php or asp... i mean just html and jquery?
here is what i have up to now:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript" src="scripts/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
});
</script>
</head>
<body>
<div>
<form action="form_action.asp" method="get">
Picture: <input type="file" size=100px name="picName"/><br />
<input type="submit" value="Submit" />
</form>
</div>
</body>
</html>
If you know a plugin that works... i did not found one... or i did not manage to make it work :(
Or if you can guide me tou a tutorial that would be nice.
thanks