41 lines
656 B
JavaScript
41 lines
656 B
JavaScript
$(function() {
|
|
|
|
$('#hideEmail').hide();
|
|
$('#emailTable').hide();
|
|
|
|
$("#ajaxLoadEmail").hide();
|
|
$("#ajaxLoadEmail").bind("ajaxSend", function() {
|
|
$(this).show();
|
|
}).bind("ajaxComplete", function() {
|
|
$(this).hide();
|
|
|
|
});
|
|
|
|
|
|
|
|
var userID = $('#userID').text();
|
|
|
|
|
|
|
|
|
|
$('#hideEmail').click(function() {
|
|
$(this).hide();
|
|
$('#showEmail').show();
|
|
|
|
$('#emailTable').slideUp('fast');
|
|
});
|
|
|
|
|
|
$('#showEmail').click(function() {
|
|
$(this).hide();
|
|
$('#hideEmail').show();
|
|
$.get('/emails/view_user_emails/'+userID, function(data) {
|
|
$('#emailTable').html(data);
|
|
$('#emailTable').slideDown('fast');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
}); |