I'm having troubles with a simple menu hide/show with jQuery.
The HTML markup is as follows:
<div class="content borderRad5" id="mainWrapper">
<div id="ticketControl" class="noPrint blackBoxShadow">
<span id="printThis" class="TicketButton">Print</span>
<span id="emailThis" class="TicketButton">Email as Word</span>
<div id="emailDoc" class="blackBoxShadow borderRad5">
<div class="underline">Email to:</div>
<label>Email</label>
<span>
<input type="text" class="smallText" />
</span>
</div>
<span id="wordThis" class="TicketButton">Save as Word</span>
<span id="addToLoyalty" class="TicketButton">Add to Account</span>
<span id="addNote" class="TicketButton">Add Note</span>
<span id="refundThis" class="TicketButton">Refund</span>
</div>
---- THE REST OF THE PAGE ----
</div>
#ticketControl is a hidden div containing the menu. When the mouse is clicked anywhere within the .content div, I want it to slide into view. The jQuery below does this just lovely.
$('.content').live('click', function () {
$('#ticketControl').slideToggle('slow');
});
However, I have a second hidden div within this main menu #emailDoc which needs to slide into view when #emailThis is clicked, obviously this is easy, BUT, I can't stop it from hiding the menu again.
I realise why it's doing it, because anything within .content triggers the slideToggle function as above, but I can't seem to stop it, I've tried using .not('.TicketButton') and also trying to get parent IDs and excluding them and so on, but I'm clearly missing something obvious!
Any help much appreciated (and yes, I realise I should be using jquery on but I'm sticking with live for now...!)
live? Are you inserting the elements dynamically? Once clicked on,#emailDoc, you just have to prevent the event from bubbling up. This could be tricky though if you uselive. – Felix Kling Jan 30 '12 at 10:39liveactually, no, but I still can't get it to work. I tried$('.content').not('#ticketControl').click(function () { $('#ticketControl').slideToggle('slow'); });but it makes no difference... why is it ignoring thenot? – Jamie Hartnoll Jan 30 '12 at 11:08.notis filtering the set of elements. So you are saying: Select all elements with classcontentand remove the one with IDticketControl. – Felix Kling Jan 30 '12 at 11:09clickevent from being captured within the element with IDticketControl? – Jamie Hartnoll Jan 30 '12 at 11:10$('.content')selects one element..not('#ticketControl')would remove that one element if it had the IDticketControl. Then you bind the event handler to new resulting set. – Felix Kling Jan 30 '12 at 11:13