Click here to Skip to main content
15,890,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
JavaScript
<script language="javascript" type="text/javascript" >
    $().ready(function () {
        //alert("I am in the ready");
        //alert($("img").length);
        $("img").mouseover(function () {
            $(this).width(200);
            $(this).height(200)
        });
        $("img").mouseleave(function () {
            $(this).width(50);
            $(this).height(50)
        });
    });
</script>


Help me!

Thanks in advance.
Posted
Updated 2-Aug-11 0:28am
v3
Comments
Suresh Suthar 2-Aug-11 6:54am    
But, what is your question??
I think you want to display a popup, but in your code you are manipulating the size of image. You can use a div to show popup (I think that is available in jQuery "Modal Popup") put an image control in that div and pass src to that image control.

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