Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a file uploader,i am previewing the picture what i am uploading in a div below.but i have to highlight the image in a popup window with a larger size what i am previewing by clicking/mouseover on the preview image.Can anyone help me?

aspx:

ASP.NET
<div style="width: auto; height: auto;">
                                            <asp:FileUpload ID="QuestionUp" clientIDMode="Static" runat="server" onchange="imageURL(this)" />
                                            <br />
                                            <img id="replaceMe" style="height: 24px; width: 222px" title="Test Image" src=""
                                                alt="" name="uu" height="80" width="200" onmouseover="applyPirobox(this);"  önmouseout="removePiro(this);" />
                                            <div id="popDiv" style="display: none; height: 150; width: 180;">
                                                <img id="popImage" alt="No image" src="" height="150" width="222" />
                                            </div>
                                            <br />
                                        </div>




javascript:

JavaScript
<script type="text/javascript">
        function imageURL(input) {
            if (input.files && input.files[0]) {
                var reader = new FileReader();

                reader.onload = function(e) {
                    $('#replaceMe').attr('src', e.target.result)
                 .width(222)
                 .height(86);
                }

                reader.readAsDataURL(input.files[0]);
            }
        }
    </script>
Posted
Updated 1-Aug-12 22:23pm
v2
Comments
Christian Graus 2-Aug-12 3:40am    
This makes no sense to me at all.

1 solution

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