his post is very basic level Jquery and CSS implementation. I want to explain how to design simple drop down menu with CSS, HTML and Jquery. This system helps you to minimise the menus list. Just take a quick look at this post very few lines of code, use it and enrich your web projects. Download Script Live Demo HTML Code Simple HTML code <div class=" dropdown "> <a class=" account " > My Account </a> <div class=" submenu "> <ul class=" root "> <li > <a href=" #Dashboard " > Dashboard </a> </li> <li > <a href=" #Profile " > Profile </a> </li> <li > <a href=" #settings "> Settings </a> </li> <li > <a href=" #feedback "> Send Feedback </a> </li> </ul> </div> </div> JavaScript Contains javascipt code. $(".account").click(function(){} - ac...
Basic understanding of some Information Technology