Hi, Can someone help me to mimic the drop down menu of www[dot]sony[dot]com using mootools or jquery, or point me to a tutorial site where i could learn to create my drop down menu using mootools or jquery! Thanks!
In-order for this to work you must download the jQuery 1.2.6 Library: <script src="jquery-1.2.6.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function() { $('a').click(function() { $('#box').slideDown('slow'); }); }); </script> <style type="text/css"> #box { background: red; height: 500; width: 500; } </style> <div id="box"> <a href="#">Click Me!</a> </div> Code (markup):