cmc-sales/webroot/js/view_user_email.js
2011-03-21 13:26:07 +11:00

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');
});
});
});