Click here to Skip to main content
15,883,623 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi everyone

i want to upload multiple images on particular product in one shot but before upload it on server i also want to see their preview on web page after browsing/selecting image by user.

help us

thnanks
Posted
Updated 16-Dec-11 0:45am
v2

check following code
HTML
<SCRIPT type="text/javascript">
<!--
function checkImg(objImg)
{
	document.getElementById("previewImg").src=objImg.value;
}
</SCRIPT>
</HEAD>
<BODY>
	<INPUT type="file" id="picField" onchange="checkImg(this)">
	<IMG id="previewImg" alt="Preview">
</BODY>


you can check this[^] link also.-->
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900