[jQuery] Animating Height of Parent Hides Select Options

2010-01-15 Thread Meander365
When I focus on a select box I want the hidden tooltip to appear. When I click on the select box the animation starts but the option list is hidden. How do I get round this? .showme {display:none;} li {height:25px;background:red; } select{z-index:100;} p{margin:0px;padding:0px;} $(document).rea

[jQuery] Events - Live -v- Livequery

2009-05-18 Thread Meander365
Hi all, I normally do this with livequery: $('.mylink').livequery(function(event) { $(this).mycustomFunction(); }); So any new .mylink's on a page would also be bound with my custom function. How can I do this with the new LIVE event? or