Okay,
So after review of the information I've received. (Thank you by the way).
This is what I have.
<div id="guildInvites1" class="modal hide fade" tabindex="-1" role="dialog"
aria-labelledby="guildInvites" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">×</button>
<h3 id="guildInvites">Guild Invites</h3>
</div>
<div class="modal-body">
<div class="span12 superDuper">
<a id="newKey" href=''>New Key</a> //This is the <a
id="newKey" thing I want to be able to click.
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal"
aria-hidden="true">Close</button>
</div>
</div>
<script type="text/javascript">
$(document).delegate('#newKey', 'click', function() {
alert("WORKING?!");
$('.superDuper').html('Loading...')
$.get('guildinvite-exec.php', {load:'buttonClick'}, function(r) {
$('.superDuper').html(r)
})
})
</script>
As of right now the WORKING doesn't even show up. So I'm assuming that
means that it's not working in any way... Kinda crappy.
I don't think there is any other code that needs to be shown.
Appreciate all the help guys.
Cheers,
Jake