I'm trying to generate some content when the user clicks on a particular link. This generated content serves as a loading div for some ajax content. Everything works, except for the loading div is not created until I click the link a second time. What's causing this?
Here is the live page: http://tickets.ebridgesites.com/tickets.php
Here is the relevant HTML:
<table id="list">
...
<tr id="ticketID-1">
<td><a href="ticket-details.php" class="alert" title="Alert">A descriptive ticket title</a></td>
<td><a href="#" class="more" data-more-type="client">Business World Inc</a></td>
<td><a href="#" class="more" data-more-type="contact">Fran Bumpkins</a></td>
<td>
<a href="#" class="more" data-more-type="employee">John Miller</a>
<!-- ajax-parts/more-employees.php goes here -->
</td>
<td>Jan 25, 20:35</td>
<td>On-site</td>
<td>Open</td>
<td class="listAddTime"><a href="#">5.25</a></td>
</tr>
....
And here is the jQuery being used:
$('#list a.more').live('click', function() {
var type = $(this).attr('data-more-type');
var ticket = $(this).parent().parent().attr('id');
// place the relative positioned div as a container for .moreOptions box
var relativeDiv = '<div class="relative"></div>';
$(this).after(relativeDiv);
alert('div.relative should be inserted here but does not until second click');
$('#'+ticket+' .relative').load('inc/ajax-parts/more-'+type+'.php');
return false;// prevent default of a.more link
});
var ticket = $(this).parent().parent().attr('id');tovar ticket = $(this).closest('tr').attr('id');, to make it a little more flexible if the structure changes? – David Thomas Jan 28 '11 at 13:26