Show Hide a div using jquery in MVC 4

I'm going to explain to show and hide a div in mvc 4 using jquery.

In the step 1st,
I'm going to create view code for show and hide to div.

< div class="divImage">
    <a href="#"><img src="~/Images/icon_options.png" /></a>
< /div>

 < div class="divEdit" style="display: none;">
        < fieldset style="width:30px;">
            < legend>Edit Update Delete</legend>
             @ Html.ActionLink("Edit", "", "")
             @ Html.ActionLink("Update", "", "")
             @ Html.ActionLink("Delete", "", "")
        < /fieldset>
 < /div>

In the 2nd steps, 
I'm going to create to jQuery code for show hide div using show() and hide() method of jquery. 

< script type="text/javascript" >
    $(document).ready(function () {
         $('.divImage').hover(function () { $('.divEdit').show() });
         $('.divEdit').hover(function () { }, function () { $('.divEdit').hide() });
    });
< /script >

Thanks,
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^