I have set a div through jQuery to show and hide on hover of an item. Within the div I have dropdowns, but when I click on the Select List and hover on the Options List, the Select Menu closes instantly.jQuery:\[code\] <script type='text/javascript'>//<![CDATA[ $(window).load(function(){ $(".tiptext").mouseover(function() { $(this).children(".description").show(); }).mouseout(function() { $(this).children(".description").hide(); }); });//]]> </script>\[/code\]HTML:\[code\] <div class="description" style="display: none;"> <div id="tab1"> <h2>Calendar Use</h2> <p>Available dates are marked in white, those unavailable are black. The holiday villa is available from 4:00pm on the day of arrival and needs to be vacated by 10:00am on the day of departure. If you have earlier flight arrival times kindly contact us directly.</p> </div> <div id="tab2"> <h2>Check Availability</h2> <br><p>Arrival Date</p> <div id="calendar-titles"><span class="day-t">day</span><span class="month-t">month</span><span class="year-t">year</span></div><form method="post" action=""> <div id="calendar-container"><select id="year2Sel" name="year2Sel" onchange="showRSS(document.getElementById('field2').value"></select><select id="monthSel" name="monthSel" onclick="showRSS(document.getElementById('field2').value, document.getElementById('yearSel').value, this.value, document.getElementById('daySel').value )"><option value="http://stackoverflow.com/questions/14456688/0">January</option><option value="http://stackoverflow.com/questions/14456688/1">February</option><option value="http://stackoverflow.com/questions/14456688/2">March</option><option value="http://stackoverflow.com/questions/14456688/3">April</option><option value="http://stackoverflow.com/questions/14456688/4">May</option><option value="http://stackoverflow.com/questions/14456688/5">June</option><option value="http://stackoverflow.com/questions/14456688/6">July</option><option value="http://stackoverflow.com/questions/14456688/7">August</option><option value="http://stackoverflow.com/questions/14456688/8">September</option><option value="http://stackoverflow.com/questions/14456688/9">October</option><option value="http://stackoverflow.com/questions/14456688/10">November</option><option value="http://stackoverflow.com/questions/14456688/11">December</option></select><select id="daySel" name="daySel" onchange="showRSS(document.getElementById('field2').value, document.getElementById('yearSel').value, document.getElementById('monthSel').value, this.value )"><option value="http://stackoverflow.com/questions/14456688/1">1</option><option value="http://stackoverflow.com/questions/14456688/2">2</option><option value="http://stackoverflow.com/questions/14456688/3">3</option><option value="http://stackoverflow.com/questions/14456688/4">4</option><option value="http://stackoverflow.com/questions/14456688/5">5</option><option value="http://stackoverflow.com/questions/14456688/6">6</option><option value="http://stackoverflow.com/questions/14456688/7">7</option><option value="http://stackoverflow.com/questions/14456688/8">8</option><option value="http://stackoverflow.com/questions/14456688/9">9</option><option value="http://stackoverflow.com/questions/14456688/10">10</option><option value="http://stackoverflow.com/questions/14456688/11">11</option><option value="http://stackoverflow.com/questions/14456688/12">12</option><option value="http://stackoverflow.com/questions/14456688/13">13</option><option value="http://stackoverflow.com/questions/14456688/14">14</option><option value="http://stackoverflow.com/questions/14456688/15">15</option><option value="http://stackoverflow.com/questions/14456688/16">16</option><option value="http://stackoverflow.com/questions/14456688/17">17</option><option value="http://stackoverflow.com/questions/14456688/18">18</option><option value="http://stackoverflow.com/questions/14456688/19">19</option><option value="http://stackoverflow.com/questions/14456688/20">20</option><option value="http://stackoverflow.com/questions/14456688/21">21</option><option value="http://stackoverflow.com/questions/14456688/22">22</option><option value="http://stackoverflow.com/questions/14456688/23">23</option><option value="http://stackoverflow.com/questions/14456688/24">24</option><option value="http://stackoverflow.com/questions/14456688/25">25</option><option value="http://stackoverflow.com/questions/14456688/26">26</option><option value="http://stackoverflow.com/questions/14456688/27">27</option><option value="http://stackoverflow.com/questions/14456688/28">28</option><option value="http://stackoverflow.com/questions/14456688/29">29</option><option value="http://stackoverflow.com/questions/14456688/30">30</option><option value="http://stackoverflow.com/questions/14456688/31">31</option></select></div><select id="yearSel" name="yearSel" onchange="showRSS(document.getElementById('field2').value, document.getElementById('yearSel').value, document.getElementById('monthSel').value, document.getElementById('daySel').value)"> <option value="http://stackoverflow.com/questions/14456688/2013">2013</option> <option value="http://stackoverflow.com/questions/14456688/2014">2014</option> </select><div id="avail-left"><p>No of Nights</p><span>min stay: 7 nights</span> <input type="text" id="field2" name="nights" onkeyup="showRSS(this.value, document.getElementById('yearSel').value, document.getElementById('monthSel').value, document.getElementById('daySel').value)" value="" alt="Test" onkeypress="return isNumberKey(event)" onchange="isValid();"></div><div id="avail-right"><p>Est. Rate</p><div id="rssOutput"></div></div><input type="submit" value="http://stackoverflow.com/questions/14456688/Enquire" name="submit" class="enquirebtn"> </form> <br> </div> <div id="tab3"> <iframe width="243px" height="221px" src="http://stackoverflow.com/calendar/index.php" frameborder="0" border="0" style="border:0px;"></iframe> </div> </div>\[/code\]Anyone got suggestions as to how to solve this issue?