2013-11-07 08:00:43 +00:00
|
|
|
$(document).ready(function() {
|
|
|
|
if ($('#donor_title_prefix_preview').size() === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$('#donor_title_prefix_preview').text($('#donor_title_prefix').val().trim() + ' ');
|
|
|
|
$('#donor_title_suffix_preview').text(' ' + $('#donor_title_suffix').val().trim());
|
2013-08-28 23:08:41 +00:00
|
|
|
|
2013-11-08 08:01:03 +00:00
|
|
|
if ($('#donor_title_comma').attr('checked')) {
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_comma_preview').text('');
|
|
|
|
} else {
|
|
|
|
$('#donor_title_comma_preview').text(', ');
|
|
|
|
}
|
2013-08-28 23:08:41 +00:00
|
|
|
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_prefix').keyup(function() {
|
2013-11-08 08:01:03 +00:00
|
|
|
if ($(this).val().length <= 30) {
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_prefix_preview').text($(this).val().trim() + ' ');
|
|
|
|
}
|
|
|
|
});
|
2013-08-28 23:08:41 +00:00
|
|
|
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_suffix').keyup(function() {
|
2013-11-08 08:01:03 +00:00
|
|
|
if ($(this).val().length <= 30) {
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_suffix_preview').text(' ' + $(this).val().trim());
|
|
|
|
}
|
|
|
|
});
|
2013-08-28 23:08:41 +00:00
|
|
|
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_comma').change(function() {
|
2013-11-08 08:01:03 +00:00
|
|
|
if ($(this).attr('checked')) {
|
2013-11-07 08:00:43 +00:00
|
|
|
$('#donor_title_comma_preview').text('');
|
|
|
|
} else {
|
|
|
|
$('#donor_title_comma_preview').text(', ');
|
|
|
|
}
|
2013-08-28 23:08:41 +00:00
|
|
|
});
|
2013-11-07 08:00:43 +00:00
|
|
|
});
|