• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

web technology

 
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi guys, first of all, i ask thanks for all quick responses given by you all

actually, i need to create nested submenu, in which i have to create main menu "menu" after i am getting mouse over this, submenu "submenu1" should appear..

similarly,after getting mouse over it, the nested submenu "nested submenu1" should appear..

then, after getting mouse out of the nested submenu, both the submenu and nested submenu should disappear..

these are my requirements.. i have done it but i could not able to make my submenu "submenu1" to still appear after getting mouse move out of submenu1


my codes are as follows







thanks in advance
 
Author
Posts: 38
jQuery
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's invalid HTML to have a div directly within a ul - it should only contain li's. So restructure your menu to have embedded lists for the sub-menus:



Then if you were using jQuery the code to show/hide the menus would be


 
bala kan
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thank you so much mr.keith wood for your quick and valuable response..
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic